-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspree_packstation.gemspec
28 lines (24 loc) · 1.04 KB
/
spree_packstation.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
# encoding: UTF-8
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_packstation'
s.version = '0.1.0'
s.summary = 'Spree extension to save DHL Packstation with address model.'
s.description = 'You want to send parcels to a DHL Packstation? There you go ...'
s.required_ruby_version = '>= 1.8.7'
s.author = 'Christoph Bünte'
s.email = 'info@christophbuente.de'
s.homepage = 'https://github.com/meinekleinefarm/spree_packstation'
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', '~> 1.3.3'
s.add_development_dependency 'capybara', '~> 2.0'
s.add_development_dependency 'coffee-rails'
s.add_development_dependency 'factory_girl', '~> 4.2'
s.add_development_dependency 'ffaker'
s.add_development_dependency 'rspec-rails', '~> 2.13'
s.add_development_dependency 'sass-rails'
s.add_development_dependency 'sqlite3'
end