-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscripture_lookup.gemspec
More file actions
21 lines (19 loc) · 1001 Bytes
/
Copy pathscripture_lookup.gemspec
File metadata and controls
21 lines (19 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$:.push File.expand_path("../lib", __FILE__)
require 'scripture_lookup/version'
Gem::Specification.new do |s|
s.name = 'scripture_lookup'
s.version = ScriptureLookup::VERSION
s.date = '2012-10-01'
s.summary = "Pull back verses from popular Bible sites easily."
s.description = "A gem to assist in pulling back and querying scripture."
s.license = "MIT"
s.authors = ["Warren Wright"]
s.email = 'warren@thewrightangle.com'
s.files = ["lib/scripture_lookup.rb", "lib/scripture_lookup/bible_gateway_scraper.rb", "lib/scripture_lookup/response.rb", "lib/scripture_lookup/parsers/bible_gateway_scrape_parser.rb", "lib/scripture_lookup/errors/error.rb"]
s.require_paths = ["lib"]
s.homepage = 'http://github.com/wrwright/scripture_lookup'
s.executables << 'scripture'
s.add_development_dependency 'rspec'
s.add_runtime_dependency 'metainspector', '~> 1.15.0'
s.add_runtime_dependency 'loofah', '~> 1.2.1'
end