-
Notifications
You must be signed in to change notification settings - Fork 43
/
spree_active_sale.gemspec
29 lines (25 loc) · 1.56 KB
/
spree_active_sale.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# encoding: UTF-8
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_active_sale'
s.version = '2.0.0'
s.summary = 'Spree Active Sale to handle flash sales/ daily deals behavior for spree.'
s.description = 'Spree Active Sale makes it easy to handle flash sale/ daily deals behavior with in a spree application. By this, you can have a variant, product, or group number of products in a taxon, attach that variant, product, or taxon to a sale event with a start and end date for scheduling. So that, your sale event will only be available between the dates given and when the sale is gone(i.e. not live), it will not be accessible at any point till you create a new one or re-schedule the same.'
s.required_ruby_version = '>= 1.9.2'
s.author = 'Surya Tripathi'
s.email = '[email protected]'
s.homepage = 'https://github.com/suryart/spree_active_sale'
s.files = Dir['LICENSE', 'README.md', 'app/**/*', 'config/**/*', 'lib/**/*', 'db/**/*']
#s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_path = 'lib'
s.requirements << 'none'
s.add_dependency 'spree_core', '~> 2.0.0'
s.add_development_dependency 'capybara', '~> 2.1.0'
s.add_development_dependency 'coffee-rails'
s.add_development_dependency 'factory_girl_rails', '~> 4.2.0'
s.add_development_dependency 'ffaker'
s.add_development_dependency 'rspec-rails', '~> 2.9'
s.add_development_dependency 'guard-rspec', '3.0.2'
s.add_development_dependency 'sass-rails'
s.add_development_dependency 'sqlite3'
end