-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfredric.gemspec
28 lines (25 loc) · 1.08 KB
/
fredric.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fredric/version'
Gem::Specification.new do |s|
s.name = 'fredric'
s.version = Fredric::VERSION
s.summary = 'FRED API Library and Command Line'
s.description = 'Easy to use API for the Federal Reserve Economic Data service with a command line interface'
s.authors = ['Danny Ben Shitrit']
s.email = 'db@dannyben.com'
s.files = Dir['README.md', 'lib/**/*.*']
s.executables = ['fred']
s.homepage = 'https://github.com/DannyBen/fredric'
s.license = 'MIT'
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'apicake', '~> 0.1'
s.add_runtime_dependency 'lp', '~> 0.2'
s.add_runtime_dependency 'super_docopt', '~> 0.1'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/DannyBen/fredric/issues',
# 'changelog_uri' => 'https://github.com/DannyBen/fredric/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/DannyBen/fredric',
'rubygems_mfa_required' => 'true',
}
end