forked from autotelik/datashift_spree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datashift_spree.gemspec
28 lines (21 loc) · 957 Bytes
/
datashift_spree.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
# Maintain your gem"s version:
require 'datashift_spree/version'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'datashift_spree'
s.version = DataShift::SpreeEcom::VERSION
s.authors = ['Thomas Statter']
s.email = '[email protected]'
s.homepage = "http://github.com/autotelik/datashift_spree"
s.summary = "Product and image import/export for Spree from Excel/CSV"
s.description = "Comprehensive Excel/CSV import/export for Spree, Products,Images, any model with full associations"
s.license = 'MIT'
s.required_ruby_version = '~> 2.0'
s.files = Dir['{lib}/**/*', 'LICENSE.md', 'README.md', 'datashift_spree.thor']
s.require_paths = ['lib']
# leave it to datashift to define Rails versions
s.add_runtime_dependency 'datashift'
s.add_runtime_dependency 'mechanize', '~> 2.6', '>= 2.6.0'
s.add_runtime_dependency 'spree', '>= 2'
end