forked from dembskoi/bulk_data_methods
-
Notifications
You must be signed in to change notification settings - Fork 3
/
bulk_data_methods.gemspec
22 lines (21 loc) · 1.09 KB
/
bulk_data_methods.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require 'bulk_data_methods/version'
Gem::Specification.new do |s|
s.name = "bulk_data_methods"
s.version = BulkDataMethods::VERSION
s.license = 'New BSD License'
s.date = '2013-10-10'
s.summary = 'MixIn used to extend ActiveRecord::Base classes implementing bulk insert and update operations through {#create_many} and {#update_many}.'
s.description = 'MixIn used to extend ActiveRecord::Base classes implementing bulk insert and update operations through {#create_many} and {#update_many}.'
s.authors = ["Keith Gabryelski"]
s.email = '[email protected]'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_path = 'lib'
s.homepage = 'http://github.com/fiksu/bulk_data_methods'
s.add_dependency "pg"
s.add_dependency "activerecord", '>= 3.0', '< 5.0'
s.add_development_dependency "rails", '>= 3.0', '< 5.0'
s.add_development_dependency "rspec-rails"
s.add_development_dependency "activeresource", '>= 3.0.0'
end