forked from zdennis/activerecord-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactiverecord-import.gemspec
More file actions
26 lines (20 loc) · 952 Bytes
/
Copy pathactiverecord-import.gemspec
File metadata and controls
26 lines (20 loc) · 952 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
25
26
# frozen_string_literal: true
require File.expand_path('../lib/activerecord-import/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Zach Dennis"]
gem.email = ["zach.dennis@gmail.com"]
gem.summary = "Bulk insert extension for ActiveRecord"
gem.description = "A library for bulk inserting data using ActiveRecord."
gem.homepage = "https://github.com/zdennis/activerecord-import"
gem.license = "MIT"
gem.metadata = {
"changelog_uri" => "https://github.com/zdennis/activerecord-import/blob/master/CHANGELOG.md"
}
gem.files = `git ls-files lib`.split($/) + ["CHANGELOG.md", "LICENSE", "README.markdown"]
gem.name = "activerecord-import"
gem.require_paths = ["lib"]
gem.version = ActiveRecord::Import::VERSION
gem.required_ruby_version = ">= 2.4.0"
gem.add_runtime_dependency "activerecord", ">= 4.2"
gem.add_development_dependency "rake"
end