-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbulk_data_methods.gemspec
More file actions
20 lines (19 loc) · 972 Bytes
/
bulk_data_methods.gemspec
File metadata and controls
20 lines (19 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$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 = '2012-09-21'
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 = 'keith@fiksu.com'
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 "rails", '>= 3.0.0'
s.add_dependency 'rspec-rails'
end