-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgrape-jsonapi_entity.gemspec
32 lines (26 loc) · 1.24 KB
/
grape-jsonapi_entity.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require File.expand_path('../lib/grape/jsonapi/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'grape-jsonapi_entity'
s.version = Grape::Jsonapi::VERSION
s.platform = Gem::Platform::RUBY
s.date = '2017-05-18'
s.summary = 'Json API v1.0 compliant sugar for grape entities'
s.description = ''
s.authors = ['David Chan']
s.email = '[email protected]'
s.license = 'MIT'
s.add_runtime_dependency 'grape-entity', '~> 0.6', '>=0.6.0'
s.add_runtime_dependency 'bson'
s.add_development_dependency 'bundler', '~> 1.14'
s.add_development_dependency 'rake', ' ~> 12.0'
s.add_development_dependency 'rubocop', '~> 0.48'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rack-test', '~> 0.6'
s.add_development_dependency 'pry', '~> 0.10' unless RUBY_PLATFORM.eql?('java') || RUBY_ENGINE.eql?('rbx')
s.add_development_dependency 'pry-byebug', '~> 3.4' unless RUBY_PLATFORM.eql?('java') || RUBY_ENGINE.eql?('rbx')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")
s.require_paths = ['lib']
end