Add model
Showing
source 'https://rubygems.org' | source 'https://gems.ruby-china.org' | ||
# Specify your gem's dependencies in shotengai.gemspec | # Specify your gem's dependencies in shotengai.gemspec | ||
gemspec | gemspec |
db/migrate/2_create_shotengai_catalogs.rb
0 → 100644
lib/shotengai/aasm_dlc.rb
0 → 100644
lib/shotengai/buyer.rb
0 → 100644
lib/shotengai/cart.rb
0 → 100644
lib/shotengai/catalog.rb
0 → 100644
lib/shotengai/order.rb
0 → 100644
lib/shotengai/product.rb
0 → 100644
lib/shotengai/series.rb
0 → 100644
lib/shotengai/snapshot.rb
0 → 100644
lib/shotengai/web_error.rb
0 → 100644
... | @@ -4,31 +4,42 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ... | @@ -4,31 +4,42 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) |
require 'shotengai/version' | require 'shotengai/version' | ||
Gem::Specification.new do |spec| | Gem::Specification.new do |spec| | ||
spec.name = "shotengai" | spec.name = 'shotengai' | ||
spec.version = Shotengai::VERSION | spec.version = Shotengai::VERSION | ||
spec.authors = ["ivan Lan"] | spec.authors = ['ivan Lan'] | ||
spec.email = ["mumumumushu@gmail.com"] | spec.email = ['mumumumushu@gmail.com'] | ||
spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.} | spec.summary = %q{} | ||
spec.description = %q{TODO: Write a longer description or delete this line.} | spec.description = %q{} | ||
spec.homepage = "TODO: Put your gem's website or public repo URL here." | spec.homepage = 'https://git.tallty.com/open-source/shotengai' | ||
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | ||
# to allow pushing to a single host or delete this section to allow pushing to any host. | # to allow pushing to a single host or delete this section to allow pushing to any host. | ||
if spec.respond_to?(:metadata) | if spec.respond_to?(:metadata) | ||
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" | spec.metadata['allowed_push_host'] = 'https://git.tallty.com/open-source/shotengai' | ||
else | else | ||
raise "RubyGems 2.0 or newer is required to protect against " \ | raise 'RubyGems 2.0 or newer is required to protect against ' \ | ||
"public gem pushes." | 'public gem pushes.' | ||
end | end | ||
spec.files = `git ls-files -z`.split("\x0").reject do |f| | spec.files = 'git ls-files -z'.split('\x0').reject do |f| | ||
f.match(%r{^(test|spec|features)/}) | f.match(%r{^(test|spec|features)/}) | ||
end | end | ||
spec.bindir = "exe" | spec.bindir = 'exe' | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | spec.require_paths = ['lib'] | ||
spec.add_dependency 'aasm' | |||
spec.add_dependency 'acts-as-taggable-on' | |||
spec.add_dependency 'rails' | |||
spec.add_development_dependency 'bundler', '~> 1.14' | |||
spec.add_development_dependency 'factory_girl_rails' | |||
spec.add_development_dependency 'rake', '~> 10.0' | |||
spec.add_development_dependency "rspec", "~> 3.0" | |||
# spec.add_development_dependency 'rspec-rails-swagger', git: 'git://github.com/tallty/rspec-rails-swagger' | |||
# spec.add_development_dependency 'simplecov' | |||
spec.add_development_dependency 'mysql2' | |||
spec.add_development_dependency "bundler", "~> 1.14" | |||
spec.add_development_dependency "rake", "~> 10.0" | |||
end | end |
Please
register
or
sign in
to comment