FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
activeresource/activeresource.gemspec at main · rails/activeresource · GitHub
rails
/
activeresource
Public
Notifications
You must be signed in to change notification settings
Fork
359
Star
1.4k
Code
Issues
1
Pull requests
8
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
activeresource
/
activeresource.gemspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (31 loc) · 1.4 KB
Breadcrumbs
activeresource
/
activeresource.gemspec
Copy path
File metadata and controls
39 lines (31 loc) · 1.4 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
34
35
36
37
38
39
# frozen_string_literal: true
$LOAD_PATH
.
push
File
.
expand_path
(
"../lib"
,
__FILE__
)
require
"active_resource/version"
Gem
::
Specification
.
new
do
|
s
|
version
=
ActiveResource
::
VERSION
::
STRING
s
.
platform
=
Gem
::
Platform
::
RUBY
s
.
name
=
"activeresource"
s
.
version
=
version
s
.
summary
=
"REST modeling framework (part of Rails)."
s
.
description
=
"REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models."
s
.
license
=
"MIT"
s
.
author
=
"David Heinemeier Hansson"
s
.
email
=
"david@loudthinking.com"
s
.
homepage
=
"http://www.rubyonrails.org"
s
.
metadata
=
{
"bug_tracker_uri"
=>
"https://github.com/rails/activeresource/issues"
,
"changelog_uri"
=>
"https://github.com/rails/activeresource/releases/tag/v
#{
version
}
"
,
"documentation_uri"
=>
"http://rubydoc.info/gems/activeresource"
,
"source_code_uri"
=>
"https://github.com/rails/activeresource/tree/v
#{
version
}
"
,
"rubygems_mfa_required"
=>
"true"
}
s
.
files
=
Dir
[
"MIT-LICENSE"
,
"README.md"
,
"lib/**/*"
]
s
.
require_path
=
"lib"
s
.
required_ruby_version
=
">= 3.1.0"
s
.
add_dependency
(
"activesupport"
,
">= 7.2"
)
s
.
add_dependency
(
"activemodel"
,
">= 7.2"
)
s
.
add_dependency
(
"activemodel-serializers-xml"
,
"~> 1.0"
)
s
.
add_development_dependency
(
"rake"
)
s
.
add_development_dependency
(
"mocha"
,
">= 0.13.0"
)
s
.
add_development_dependency
(
"rexml"
)
end
Back
|
FazBrowse Home
|
New Git URL