forked from EmCousin/grape-jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrape-jsonapi.gemspec
More file actions
26 lines (20 loc) · 931 Bytes
/
grape-jsonapi.gemspec
File metadata and controls
26 lines (20 loc) · 931 Bytes
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
# Generated by EmCousin
# frozen_string_literal: true
require File.expand_path('lib/grape_jsonapi/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ['Emmanuel Cousin']
gem.email = ['emmanuel_cousin@hotmail.fr']
gem.summary = 'Use grape-jsonapi in grape'
gem.description = 'Provides a Formatter for the Grape API DSL to emit objects serialized with jsonapi-serializer.'
gem.homepage = 'https://github.com/EmCousin/grape-jsonapi'
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.name = 'grape-jsonapi'
gem.require_paths = ['lib']
gem.version = Grape::Jsonapi::VERSION
gem.licenses = ['MIT']
gem.required_ruby_version = '>= 3.3.0'
gem.add_dependency 'grape'
gem.add_dependency 'jsonapi-serializer'
gem.metadata['rubygems_mfa_required'] = 'true'
end