-
Notifications
You must be signed in to change notification settings - Fork 29
/
hyper_resource.gemspec
37 lines (30 loc) · 1.22 KB
/
hyper_resource.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
32
33
34
35
36
require './lib/hyper_resource/version'
Gem::Specification.new do |s|
s.name = 'hyperresource'
s.version = HyperResource::VERSION
s.date = HyperResource::VERSION_DATE
s.summary = 'Extensible hypermedia client for Ruby'
s.description = <<-EOT
HyperResource is a hypermedia client library for Ruby. Its goals are to
interface directly with well-behaved hypermedia APIs, to allow the data
returned from these APIs to optionally be extended by client-side code,
and to present a modern replacement for ActiveResource.
EOT
s.homepage = 'https://github.com/gamache/hyperresource'
s.authors = ['Pete Gamache']
s.email = '[email protected]'
s.files = Dir['lib/**/*']
s.license = 'MIT'
s.has_rdoc = true
s.require_path = 'lib'
s.required_ruby_version = '>= 1.8.7'
s.add_dependency 'uri_template', '>= 0.5.2'
s.add_dependency 'faraday', '>= 0.8.6'
s.add_dependency 'json'
s.add_dependency 'fuzzyurl', '0.2.2'
s.add_development_dependency 'rake', '>= 10.0.4'
s.add_development_dependency 'minitest', '>= 4.7.0'
s.add_development_dependency 'mocha', '>= 0.13.3'
s.add_development_dependency 'sinatra', '>= 1.4.0'
#s.add_development_dependency 'debugger'
end