-
Notifications
You must be signed in to change notification settings - Fork 0
/
import.gemspec
32 lines (27 loc) · 1.21 KB
/
import.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "import/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "import"
s.version = Import::VERSION
s.authors = ["Mathias Gawlista"]
s.email = ["[email protected]"]
s.homepage = "http://applic.at"
s.summary = "Data entity importer for Ruby and asynchronous handling"
s.description = "Data entity importer for Ruby and asynchronous handling wrapped around activerecord-import and featured by valium and state_machine."
#s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.add_dependency "rails"
s.add_dependency "valium"
s.add_dependency "state_machine"
s.add_dependency "activerecord-import"
s.add_development_dependency "mysql2"
s.add_development_dependency "rspec", "~> 2.6.0"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "capybara"
s.add_development_dependency "factory_girl_rails"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "sdoc"
end