-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpericope.gemspec
29 lines (25 loc) · 1.29 KB
/
pericope.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)
require "pericope/version"
Gem::Specification.new do |s|
s.name = "pericope"
s.version = Pericope::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Bob Lail"]
s.email = ["bob.lailfamily@gmail.com"]
s.homepage = "http://github.com/boblail/pericope"
s.summary = "Pericope is a gem for parsing Bible references."
s.description = "It recognizes common abbreviations and misspellings for names of the books of the Bible and a variety of ways of denoting ranges of chapters and verses. It can parse pericopes singly or out of a block of text. It's useful for comparing two pericopes for intersection and normalizing them into a well-formatted string."
s.files = Dir.glob("{bin,data,lib}/**/*") + %w(README.mdown)
s.executables = ["pericope"]
s.default_executable = "pericope"
s.require_path = "lib"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "shoulda-context"
s.add_development_dependency "pry"
s.add_development_dependency "minitest", "~> 5.0"
s.add_development_dependency "minitest-reporters"
s.add_development_dependency "minitest-reporters-turn_reporter"
end