-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscriptura.gemspec
23 lines (21 loc) · 1.1 KB
/
scriptura.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require "scriptura/version"
Gem::Specification.new do |gem|
gem.authors = ['Gagan Awhad']
gem.email = ['[email protected]']
gem.description = 'A ruby library that attempts to provide an intuitive API for operations on meta information about the Bible'
gem.summary = 'A ruby library that attempts to provide an intuitive API for operations on meta information about the Bible'
gem.homepage = 'https://www.github.com/gaganawhad/scriptura'
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.files = Dir['{app,config,db,lib}/**/*'] + ['README.md', 'LICENSE']
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'scriptura'
gem.require_paths = ['lib']
gem.version = Scriptura::Version::STRING
gem.add_runtime_dependency 'safe_yaml'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rubocop'
gem.add_development_dependency 'byebug'
end