forked from jamis/bulk_insert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbulk_insert.gemspec
More file actions
24 lines (19 loc) · 841 Bytes
/
bulk_insert.gemspec
File metadata and controls
24 lines (19 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "bulk_insert/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "bulk_insert"
s.version = BulkInsert::VERSION
s.authors = ["Jamis Buck"]
s.email = ["jamis@jamisbuck.org"]
s.homepage = "http://github.com/jamis/bulk_insert"
s.summary = "An helper for doing batch (single-statement) inserts in ActiveRecord"
s.description = "Faster inserts! Insert N records in a single statement."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "activerecord", ">= 4.1.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rails", ">= 4.2.0"
end