-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotefm.gemspec
22 lines (19 loc) · 934 Bytes
/
quotefm.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/quotefm/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Moritz Kröger"]
gem.email = ["[email protected]"]
gem.description = "Unofficial Wrapper for the Quote.fm REST API"
gem.summary = "Wraps all functions of the Quote.fm REST API into Ruby Objects and returns its responses"
gem.homepage = "http://github.com/mcrip/quotefm"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "quotefm"
gem.require_paths = ["lib"]
gem.version = Quotefm::VERSION
gem.add_dependency "httparty"
gem.add_development_dependency "fakeweb", "~> 1.3"
gem.add_development_dependency "rspec", "~> 2.9"
gem.add_development_dependency "gem-release"
end