forked from dizzy42/restulicious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
restulicious.gemspec
25 lines (21 loc) · 1.01 KB
/
restulicious.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/restulicious/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Tim Payton"]
gem.email = ["timpayton@gmail.com"]
gem.description = %q{Simplifies consumption of restful APIs, including a query interface like ActiveRecord. }
gem.summary = %q{Simplifies consumption of restful APIs, including a query interface like ActiveRecord. }
gem.homepage = ""
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 = "restulicious"
gem.require_paths = ["lib"]
gem.version = Restulicious::VERSION
gem.add_dependency('activesupport', '>= 3.0.0')
gem.add_dependency('i18n')
gem.add_dependency('typhoeus', '<= 0.4.2')
gem.add_development_dependency('minitest', '>= 3.0.0')
gem.add_development_dependency('mocha')
gem.add_development_dependency('rake')
end