forked from diogob/postgres-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgres-copy.gemspec
30 lines (26 loc) · 1.2 KB
/
postgres-copy.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "postgres-copy"
s.version = "1.7.1"
s.platform = Gem::Platform::RUBY
s.required_ruby_version = ">= 1.9.3"
s.authors = ["Diogo Biazus"]
s.description = "Now you can use the super fast COPY for import/export data directly from your AR models."
s.email = "[email protected]"
git_files = `git ls-files`.split("\n") rescue ''
s.files = git_files
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = []
s.require_paths = %w(lib)
s.homepage = "https://github.com/diogob/postgres-copy"
s.require_paths = ["lib"]
s.summary = "Put COPY command functionality in ActiveRecord's model class"
s.add_dependency "pg", ">= 0.17"
s.add_dependency "activerecord", '>= 5.1'
s.add_development_dependency "bundler"
s.add_development_dependency "rdoc"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "rake", "~> 12.3.3"
end