forked from trailblazer/roar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
roar.gemspec
30 lines (26 loc) · 1.21 KB
/
roar.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
$:.push File.expand_path("../lib", __FILE__)
require "roar/version"
Gem::Specification.new do |s|
s.name = "roar"
s.version = Roar::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nick Sutterer"]
s.email = ["apotonick@gmail.com"]
s.homepage = "http://trailblazer.to/gems/roar"
s.summary = %q{Parse and render REST API documents using representers.}
s.description = %q{Object-oriented representers help you defining nested REST API documents which can then be rendered and parsed using one and the same concept.}
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency "representable", ">= 2.4.0", "< 3.1.0"
s.add_development_dependency "rake", ">= 0.10.1"
s.add_development_dependency "test_xml", "0.1.6"
s.add_development_dependency "minitest"
s.add_development_dependency "sinatra"
s.add_development_dependency "sinatra-contrib"
s.add_development_dependency "virtus", ">= 1.0.0"
s.add_development_dependency "faraday"
s.add_development_dependency "json"
end