-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathgrape-entity.gemspec
More file actions
32 lines (26 loc) · 1.31 KB
/
grape-entity.gemspec
File metadata and controls
32 lines (26 loc) · 1.31 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
30
31
32
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'grape_entity/version'
Gem::Specification.new do |s|
s.name = 'grape-entity'
s.version = GrapeEntity::VERSION
s.authors = ['LeFnord', 'Michael Bleigh']
s.email = ['pscholz.le@gmail.com', 'michael@intridea.com']
s.homepage = 'https://github.com/ruby-grape/grape-entity'
s.summary = 'A simple facade for managing the relationship between your model and API.'
s.description = 'Extracted from Grape, A Ruby framework for rapid API development with great conventions.'
s.license = 'MIT'
s.metadata = {
'homepage_uri' => 'https://github.com/ruby-grape/grape-entity',
'bug_tracker_uri' => 'https://github.com/ruby-grape/grape-entity/issues',
'changelog_uri' => "https://github.com/ruby-grape/grape-entity/blob/v#{s.version}/CHANGELOG.md",
'documentation_uri' => "https://www.rubydoc.info/gems/grape-entity/#{s.version}",
'source_code_uri' => "https://github.com/ruby-grape/grape-entity/tree/v#{s.version}",
'rubygems_mfa_required' => 'true'
}
s.required_ruby_version = '>= 3.0'
s.add_dependency 'activesupport', '>= 3.0.0'
s.add_dependency 'multi_json', '>= 1.0'
s.files = Dir['lib/**/*.rb', 'CHANGELOG.md', 'LICENSE', 'README.md']
s.require_paths = ['lib']
end