forked from allenwalker3/yp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yp.gemspec
21 lines (18 loc) · 808 Bytes
/
yp.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/yp/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Allen Walker"]
gem.email = ["[email protected]"]
gem.description = %q{Simple ruby wrapper for YP.com API}
gem.summary = %q{Simple ruby wrapper for YP.com API}
gem.homepage = "http://github.com/auswalk/yp"
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 = "yp"
gem.require_paths = ["lib"]
gem.version = Yp::VERSION
gem.add_dependency('rails', '>= 3.0')
gem.add_dependency('faraday', ["< 0.8", ">= 0.6"])
gem.add_dependency('faraday_middleware', [">= 0.8"])
end