-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathquotify.gemspec
26 lines (24 loc) · 972 Bytes
/
quotify.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
Gem::Specification.new do |s|
s.name = 'quotify'
s.version = '0.3.1'
s.date = '2018-01-31'
s.summary = 'Generates random quotes'
s.description = 'Generates random quotes. Perfect placeholder text.'
s.author = 'Justin Leger'
s.email = '[email protected]'
s.files = ['lib/quotify/quotes.yml', 'lib/quotify/quote.rb', 'lib/quotify.rb', 'LICENSE', 'CHANGELOG.md']
s.homepage = 'https://github.com/jusleg/quotify-ruby'
s.license = 'MIT'
s.executables << 'quotify'
s.metadata = {
"source_code_uri" => "https://github.com/jusleg/quotify-ruby",
"changelog_uri" => "https://github.com/jusleg/quotify-ruby/blob/master/CHANGELOG.md"
}
s.add_dependency 'json'
s.add_dependency 'httparty'
s.add_development_dependency 'rake'
s.add_development_dependency 'mocha'
s.add_development_dependency 'minitest'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'codecov'
end