-
Notifications
You must be signed in to change notification settings - Fork 5
/
rentjuicer.gemspec
31 lines (27 loc) · 1.09 KB
/
rentjuicer.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
29
30
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rentjuicer/version"
Gem::Specification.new do |s|
s.name = %q{rentjuicer}
s.authors = ["Tom Cocca"]
s.date = %q{2011-04-11}
s.description = %q{Ruby API wrapper for rentjuice.com built with httparty}
s.email = %q{[email protected]}
s.homepage = %q{http://github.com/tcocca/rentjuicer}
s.rdoc_options = ["--charset=UTF-8"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{ruby api wrapper for rentjuice}
s.version = Rentjuicer::VERSION
s.platform = Gem::Platform::RUBY
s.add_dependency "activesupport", "~> 3"
s.add_dependency "httparty", "~> 0.10.2"
s.add_dependency "rash", "~> 0.4.0"
s.add_dependency "will_paginate", ">= 3"
s.add_development_dependency "rake", "~> 0.9.2"
s.add_development_dependency "rspec", ">= 2.5.0"
s.add_development_dependency "webmock", ">= 1.6.2"
s.require_paths = ['lib']
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) }
end