This repository has been archived by the owner on Mar 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
fech.gemspec
50 lines (46 loc) · 1.88 KB
/
fech.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "fech/version"
Gem::Specification.new do |s|
s.name = "fech"
s.version = Fech::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'Apache-2.0'
s.authors = ["Michael Strickland", "Evan Carmi", "Aaron Bycoffe", "Derek Willis", "Sai"]
s.email = ["dwillis@gmail.com"]
s.homepage = "http://github.com/nytimes/fech"
s.summary = %q{Ruby library for parsing FEC filings.}
s.description = %q{A Ruby library for interacting with electronic filings from the Federal Election Commission.}
s.rubyforge_project = "fech"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "fastercsv"
s.add_dependency "people"
s.add_dependency "ensure-encoding"
if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
s.add_development_dependency 'rubinius-compiler'
s.add_development_dependency 'rubinius-debugger'
s.add_development_dependency 'rubysl'
s.add_development_dependency 'ffi'
s.add_development_dependency 'psych'
else
if RUBY_VERSION < "1.9"
s.add_development_dependency "linecache", "0.43"
s.add_development_dependency "ruby-debug"
s.add_development_dependency "iconv"
elsif RUBY_VERSION >= "2.0"
s.add_development_dependency "byebug"
elsif RUBY_VERSION >= "1.9" && RUBY_VERSION < '2.0'
s.add_development_dependency "ruby-debug19"
s.add_development_dependency "linecache19"
end
end
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "mocha"
s.add_development_dependency "bundler"
s.add_development_dependency "rdoc"
s.add_development_dependency "yard", "~> 0.9", ">= 0.9.11"
end