File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,10 @@ $LOAD_PATH.push File.expand_path("../lib", __FILE__)
4
4
require "active_resource/version"
5
5
6
6
Gem ::Specification . new do |s |
7
+ version = ActiveResource ::VERSION ::STRING
7
8
s . platform = Gem ::Platform ::RUBY
8
9
s . name = "activeresource"
9
- s . version = ActiveResource :: VERSION :: STRING
10
+ s . version = version
10
11
s . summary = "REST modeling framework (part of Rails)."
11
12
s . description = "REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models."
12
13
s . license = "MIT"
@@ -15,6 +16,14 @@ Gem::Specification.new do |s|
15
16
s . email = "david@loudthinking.com"
16
17
s . homepage = "http://www.rubyonrails.org"
17
18
19
+ s . metadata = {
20
+ "bug_tracker_uri" => "https://github.com/rails/activeresource/issues" ,
21
+ "changelog_uri" => "https://github.com/rails/activeresource/releases/tag/v#{ version } " ,
22
+ "documentation_uri" => "http://rubydoc.info/gems/activeresource" ,
23
+ "source_code_uri" => "https://github.com/rails/activeresource/tree/v#{ version } " ,
24
+ "rubygems_mfa_required" => "true" ,
25
+ }
26
+
18
27
s . files = Dir [ "MIT-LICENSE" , "README.md" , "lib/**/*" ]
19
28
s . require_path = "lib"
20
29
You can’t perform that action at this time.
0 commit comments