-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathspree_ajax_add_to_cart.gemspec
26 lines (22 loc) · 1.07 KB
/
spree_ajax_add_to_cart.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
# encoding: UTF-8
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_ajax_add_to_cart'
s.version = '1.1.1'
s.summary = 'Spree AJAX Add to Cart extension'
s.description = 'When the user adds an item to the cart the system will make an Ajax call to add the item to the cart. Once the item has been added the cart details in the header is updated and an alert box displayed informing the user that the item was added.'
s.required_ruby_version = '>= 1.8.7'
s.author = 'Trung Lê'
s.email = '[email protected]'
s.homepage = 'http://github.com/joneslee85/spree_ajax_add_to_cart'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.require_path = 'lib'
s.requirements << 'none'
s.add_dependency 'spree_core', '~> 1.1.0'
s.add_development_dependency 'capybara'
s.add_development_dependency 'factory_girl', '~> 2.6.4'
s.add_development_dependency 'ffaker'
s.add_development_dependency 'rspec-rails', '~> 2.9'
s.add_development_dependency 'sqlite3'
end