-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathzester.gemspec
More file actions
30 lines (25 loc) · 1.08 KB
/
zester.gemspec
File metadata and controls
30 lines (25 loc) · 1.08 KB
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
29
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "zester/version"
Gem::Specification.new do |s|
s.name = "zester"
s.version = Zester::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Tom Cocca"]
s.email = ["tom.cocca@gmail.com"]
s.homepage = "http://github.com/tcocca/zester"
s.summary = %q{Ruby wrapper for the Zillow API}
s.description = %q{Ruby API wrapper for Zillow API built with httparty designed for multiple keys}
s.rubyforge_project = "zester"
s.required_ruby_version = '>= 2.0.0'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'httparty', '~> 0.12.0'
s.add_dependency "rash", "~> 0.4.0"
s.add_development_dependency "rake", "~> 0.9.2"
s.add_development_dependency "rspec", "~> 2.10.0"
s.add_development_dependency "webmock", "~> 1.8.6"
s.add_development_dependency "vcr", "~> 2.1.1"
end