-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspree_lightspeed.gemspec
More file actions
31 lines (26 loc) · 1.03 KB
/
spree_lightspeed.gemspec
File metadata and controls
31 lines (26 loc) · 1.03 KB
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "spree_lightspeed/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "spree_lightspeed"
s.version = SpreeLightspeed::VERSION
s.authors = ["TODO: Your name"]
s.email = ["TODO: Your email"]
s.homepage = "TODO"
s.summary = "TODO: Summary of SpreeLightspeed."
s.description = "TODO: Description of SpreeLightspeed."
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 4.0.0"
s.add_dependency "spree"
s.add_dependency 'lightspeed', '~> 0.2.0'
s.add_dependency 'spree_importer'
s.add_dependency 'haml-rails'
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "vcr"
s.add_development_dependency "webmock"
s.add_development_dependency "database_cleaner"
s.add_development_dependency "factory_girl"
end