-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexappscraper.gemspec
35 lines (31 loc) · 1.43 KB
/
texappscraper.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'texappscraper/version'
Gem::Specification.new do |gem|
gem.name = "texappscraper"
gem.version = TexAppScraper::VERSION
gem.authors = ["Don Cruse", "Kyle Mitchell"]
gem.description = %q{Scrape slip opinions of the Texas Courts of Appeals}
gem.summary = <<-EOF
A compact utility for querying the webpages of the Texas Courts of Appeals,
detecting slip opinions and downloading relevant PDF files while preserving
metadata.
EOF
gem.homepage = "https://github.com/texapp/scraper"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "mechanize", "~>2.5.1"
gem.add_dependency "data_mapper", "~>1.2.0"
gem.add_dependency "dm-mysql-adapter", "~>1.2.0"
gem.add_dependency "thor", "~>0.16.0"
gem.add_dependency "cloudfiles", "~>1.5.0.1"
gem.add_development_dependency "rspec", "~>2.12.0"
gem.add_development_dependency "fakeweb", "~>1.3.0"
gem.add_development_dependency "rspec", "~>2.12.0"
gem.add_development_dependency "capistrano", "~>2.14.1"
gem.add_development_dependency "autotest", "~>4.4.6"
gem.add_development_dependency "autotest-inotify", "~>0.0.6"
end