FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
contentstack-ruby/contentstack.gemspec at master · contentstack/contentstack-ruby · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
contentstack
/
contentstack-ruby
Public
Notifications
You must be signed in to change notification settings
Fork
7
Star
5
Code
Issues
0
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
contentstack-ruby
/
contentstack.gemspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (26 loc) · 1.18 KB
Breadcrumbs
contentstack-ruby
/
contentstack.gemspec
Copy path
File metadata and controls
33 lines (26 loc) · 1.18 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
lib
=
File
.
expand_path
(
'../lib'
,
__FILE__
)
$LOAD_PATH
.
unshift
(
lib
)
unless
$LOAD_PATH
.
include?
(
lib
)
require
'contentstack/version'
Gem
::
Specification
.
new
do
|
s
|
s
.
name
=
%q{contentstack}
s
.
version
=
Contentstack
::
VERSION
.
dup
s
.
date
=
Time
.
now
s
.
authors
=
[
%q{Contentstack}
]
s
.
email
=
[
"support@contentstack.com"
]
# Aligns with nokogiri >= 1.19.x (transitive via contentstack_utils), which requires Ruby >= 3.2.
s
.
required_ruby_version
=
'>= 3.3'
s
.
license
=
"MIT"
s
.
homepage
=
"https://github.com/contentstack/contentstack-ruby"
s
.
summary
=
%q{Contentstack Ruby client for the Content Delivery API}
s
.
description
=
%q{Contentstack Ruby client for the Content Delivery API}
s
.
files
=
`git ls-files`
.
split
(
"
\n
"
)
+
Dir
[
'ext/**/*'
]
.
select
{
|
f
|
File
.
file?
(
f
)
}
s
.
extensions
=
[
'ext/download_regions/extconf.rb'
]
s
.
require_paths
=
[
"lib"
]
s
.
add_dependency
'activesupport'
,
'>= 3.2'
s
.
add_dependency
'contentstack_utils'
,
'~> 1.2'
s
.
add_development_dependency
'rspec'
,
'~> 3.13.0'
s
.
add_development_dependency
'webmock'
,
'~> 3.26.0'
s
.
add_development_dependency
'simplecov'
,
'~> 0.22.0'
s
.
add_development_dependency
'yard'
,
'~> 0.9.38'
end
Back
|
FazBrowse Home
|
New Git URL