forked from boblail/pericope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmericope.gemspec
29 lines (24 loc) · 1.23 KB
/
mericope.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__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mericope/version'
Gem::Specification.new do |s|
s.name = "mericope"
s.version = Mericope::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Bob Lail", "Duane Johnson"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/wordtreefoundation/mericope"
s.summary = "Mericope is a gem for parsing Book of Mormon references."
s.description = "It recognizes common abbreviations of the books of the Book of Mormon and a variety of ways of denoting ranges of chapters and verses. Based on Pericope."
s.require_paths = ["lib"]
s.add_dependency "activesupport", "~> 5.0"
s.add_development_dependency "rake", "~> 10.4"
s.add_development_dependency "turn", "~> 0.9"
s.add_development_dependency "pry", "~> 0.10"
s.add_development_dependency "test-unit", "~> 1.2"
s.add_development_dependency "minitest", "~> 5.11"
s.files = Dir.glob("{bin,data,lib}/**/*") + %w(README.mdown)
s.executables = ['mericope']
s.default_executable = 'mericope'
end