-
Notifications
You must be signed in to change notification settings - Fork 51
/
spree_minicart.gemspec
34 lines (30 loc) · 1.41 KB
/
spree_minicart.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
30
31
32
33
34
# encoding: UTF-8
$:.push File.expand_path("../lib", __FILE__)
require "spree_minicart/version"
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_minicart'
s.version = SpreeMinicart::VERSION
s.summary = 'Spree Minicart displays a minicart in your spree store'
s.description = "Spree Minicart allows customer to add/remove an item from their cart without ever leaving the page they're on.Let your customers preview their cart before they start the checkout process."
s.required_ruby_version = '>= 1.8.7'
s.author = 'Stéphane Bounmy'
s.email = 'stephanebounmy@gmail.com'
s.homepage = 'https://github.com/sbounmy/spree_minicart'
s.files = `git ls-files`.split("\n")
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'
s.add_dependency 'spree_frontend', '~> 2.0'
s.add_dependency 'spree_sample', '~> 2.0'
s.add_dependency 'spree_api', '~> 2.0'
s.add_development_dependency 'capybara', '1.0.1'
s.add_development_dependency 'factory_girl'
s.add_development_dependency 'ffaker'
s.add_development_dependency 'rspec-rails', '~> 2.7'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'sass-rails'
s.add_development_dependency 'coffee-rails'
s.add_development_dependency 'debugger'
end