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__)
44require "active_resource/version"
55
66Gem ::Specification . new do |s |
7+ version = ActiveResource ::VERSION ::STRING
78 s . platform = Gem ::Platform ::RUBY
89 s . name = "activeresource"
9- s . version = ActiveResource :: VERSION :: STRING
10+ s . version = version
1011 s . summary = "REST modeling framework (part of Rails)."
1112 s . description = "REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models."
1213 s . license = "MIT"
@@ -15,6 +16,14 @@ Gem::Specification.new do |s|
1516 s . email = "david@loudthinking.com"
1617 s . homepage = "http://www.rubyonrails.org"
1718
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+
1827 s . files = Dir [ "MIT-LICENSE" , "README.md" , "lib/**/*" ]
1928 s . require_path = "lib"
2029
You can’t perform that action at this time.
0 commit comments