FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
jsonapi-resources/jsonapi-resources.gemspec at master · JSONAPI-Resources/jsonapi-resources · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
JSONAPI-Resources
/
jsonapi-resources
Public
Notifications
You must be signed in to change notification settings
Fork
545
Star
2.3k
Code
Issues
208
Pull requests
52
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
jsonapi-resources
/
jsonapi-resources.gemspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (30 loc) · 1.52 KB
Breadcrumbs
jsonapi-resources
/
jsonapi-resources.gemspec
Copy path
File metadata and controls
33 lines (30 loc) · 1.52 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
33
# coding: utf-8
lib
=
File
.
expand_path
(
'../lib'
,
__FILE__
)
$LOAD_PATH
.
unshift
(
lib
)
unless
$LOAD_PATH
.
include?
(
lib
)
require
'jsonapi/resources/version'
Gem
::
Specification
.
new
do
|
spec
|
spec
.
name
=
'jsonapi-resources'
spec
.
version
=
JSONAPI
::
Resources
::
VERSION
spec
.
authors
=
[
'Dan Gebhardt'
,
'Larry Gebhardt'
]
spec
.
email
=
[
'dan@cerebris.com'
,
'larry@cerebris.com'
]
spec
.
summary
=
'Easily support JSON API in Rails.'
spec
.
description
=
'A resource-centric approach to implementing the controllers, routes, and serializers needed to support the JSON API spec.'
spec
.
homepage
=
'https://github.com/cerebris/jsonapi-resources'
spec
.
license
=
'MIT'
spec
.
files
=
Dir
.
glob
(
"{bin,lib}/**/*"
)
+
%w(
LICENSE.txt
README.md
)
spec
.
executables
=
spec
.
files
.
grep
(
%r{^bin/}
)
{
|
f
|
File
.
basename
(
f
)
}
spec
.
test_files
=
spec
.
files
.
grep
(
%r{^(test|spec|features)/}
)
spec
.
require_paths
=
[
'lib'
]
spec
.
required_ruby_version
=
'>= 2.3'
spec
.
add_development_dependency
'bundler'
,
'>= 1.17'
spec
.
add_development_dependency
'rake'
spec
.
add_development_dependency
'minitest'
,
'~> 5.10'
,
'!= 5.10.2'
spec
.
add_development_dependency
'minitest-spec-rails'
spec
.
add_development_dependency
'simplecov'
spec
.
add_development_dependency
'pry'
spec
.
add_development_dependency
'concurrent-ruby-ext'
spec
.
add_development_dependency
'database_cleaner'
spec
.
add_dependency
'activerecord'
,
'>= 5.1'
spec
.
add_dependency
'railties'
,
'>= 5.1'
spec
.
add_dependency
'concurrent-ruby'
end
Back
|
FazBrowse Home
|
New Git URL