forked from ruby-grape/grape-entity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrape-entity.gemspec
26 lines (21 loc) · 975 Bytes
/
grape-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
# 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.platform = Gem::Platform::RUBY
s.authors = ['LeFnord', 'Michael Bleigh']
s.email = ['[email protected]', '[email protected]']
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.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'activesupport', '>= 3.0.0'
# FIXME: remove dependecy
s.add_runtime_dependency 'multi_json', '>= 1.3.2'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")
s.require_paths = ['lib']
end