forked from trailblazer/roar-jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroar-jsonapi.gemspec
More file actions
29 lines (23 loc) · 1.18 KB
/
roar-jsonapi.gemspec
File metadata and controls
29 lines (23 loc) · 1.18 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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'roar/json/json_api/version'
Gem::Specification.new do |s|
s.name = 'roar-jsonapi'
s.version = Roar::JSON::JSONAPI::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Nick Sutterer', 'Alex Coles']
s.email = ['apotonick@gmail.com', 'alex@alexbcoles.com']
s.homepage = 'http://trailblazer.to/gems/roar/jsonapi.html'
s.summary = 'Parse and render JSON API documents using representers.'
s.description = 'Object-oriented representers help you define nested JSON 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.required_ruby_version = '>= 1.9.3'
s.add_runtime_dependency 'roar', '~> 1.1'
s.add_runtime_dependency 'representable', '~> 3.0', '>= 3.0.3'
s.add_development_dependency 'rake', '>= 0.10.1'
s.add_development_dependency 'minitest', '>= 5.10'
s.add_development_dependency 'multi_json'
end