gems 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
File without changes
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --format=nested
3
+ --backtrace
@@ -0,0 +1,8 @@
1
+ rvm:
2
+ - 1.8.7
3
+ - 1.9.1
4
+ - 1.9.2
5
+ - jruby
6
+ - rbx
7
+ - ree
8
+ - ruby-head
@@ -0,0 +1,3 @@
1
+ --markup markdown
2
+ -
3
+ LICENSE.md
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'http://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in gems.gemspec
4
+ gemspec
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Erik Michaels-Ober
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,124 @@
1
+ Gems
2
+ ====
3
+ Ruby wrapper for the RubyGems.org API.
4
+
5
+ Installation
6
+ ------------
7
+ gem install gems [pending]
8
+
9
+ Documentation
10
+ -------------
11
+ [http://rdoc.info/gems/gems](http://rdoc.info/gems/gems)
12
+
13
+ Continuous Integration
14
+ ----------------------
15
+ [![Build Status](http://travis-ci.org/sferik/gems.png)](http://travis-ci.org/sferik/gems)
16
+
17
+ Usage Examples
18
+ --------------
19
+ require 'rubygems'
20
+ require 'gems'
21
+
22
+ # Returns some basic information about the rails gem
23
+ puts Gems.info 'rails'
24
+
25
+ # Returns an array of active gems that match the query
26
+ puts Gems.search 'cucumber'
27
+
28
+ # Returns an array of gem version details
29
+ puts Gems.versions 'coulda'
30
+
31
+ # Returns the number of downloads by day for a particular gem version
32
+ puts Gems.downloads 'coulda', '0.6.3'
33
+
34
+ # Returns an array of gem dependency details for all versions of given gems
35
+ puts Gems.dependencies ['rails', 'thor'] [pending]
36
+
37
+ # The following method requires password authentication
38
+ Gems.configure do |config| [pending]
39
+ config.username 'nick@gemcutter.org'
40
+ config.password 'schwwwwing'
41
+ end
42
+
43
+ # Retrieve your API key using HTTP basic auth
44
+ Gems.api_key [pending]
45
+
46
+ # The following methods require authentication
47
+ Gems.configure do |config| [pending]
48
+ config.key '701243f217cdf23b1370c7b66b65ca97'
49
+ end
50
+
51
+ # List all gems that you own
52
+ puts Gems.gems [pending]
53
+
54
+ # View all owners of a gem that you own
55
+ puts Gems.owners 'gemcutter' [pending]
56
+
57
+ # Add an owner to a RubyGem you own, giving that user permission to manage it
58
+ puts Gems.add_owner 'josh@technicalpickles.com', 'gemcutter' [pending]
59
+
60
+ # Remove a user's permission to manage a RubyGem you own
61
+ puts Gems.remove_owner 'josh@technicalpickles.com', 'gemcutter' [pending]
62
+
63
+ # List the webhooks registered under your account
64
+ puts Gems.web_hooks [pending]
65
+
66
+ # Add a webhook
67
+ puts Gems.add_web_hook 'rails', 'http://example.com' [pending]
68
+
69
+ # Remove a webhook
70
+ puts Gems.remove_web_hook 'rails', 'http://example.com' [pending]
71
+
72
+ # Test fire a webhook.
73
+ puts Gems.fire_web_hook 'rails', 'http://example.com' [pending]
74
+
75
+ # Submit a gem to RubyGems.org
76
+ puts Gems.push File.new 'gemcutter-0.2.1.gem' [pending]
77
+
78
+ # Remove a gem from RubyGems.org's index
79
+ puts Gems.yank 'bills', '0.0.1', :platform => 'x86-darwin-10' [pending]
80
+
81
+ # Update a previously yanked gem back into RubyGems.org's index
82
+ puts Gems.unyank 'bills', '0.0.1', :platform => 'x86-darwin-10' [pending]
83
+
84
+ Contributing
85
+ ------------
86
+ In the spirit of [free software](http://www.fsf.org/licensing/essays/free-sw.html), **everyone** is encouraged to help improve this project.
87
+
88
+ Here are some ways *you* can contribute:
89
+
90
+ * by using alpha, beta, and prerelease versions
91
+ * by reporting bugs
92
+ * by suggesting new features
93
+ * by writing or editing documentation
94
+ * by writing specifications
95
+ * by writing code (**no patch is too small**: fix typos, add comments, clean up inconsistent whitespace)
96
+ * by refactoring code
97
+ * by closing [issues](https://github.com/sferik/gems/issues)
98
+ * by reviewing patches
99
+
100
+ Submitting an Issue
101
+ -------------------
102
+ We use the [GitHub issue tracker](https://github.com/sferik/gems/issues) to track bugs and
103
+ features. Before submitting a bug report or feature request, check to make sure it hasn't already
104
+ been submitted. You can indicate support for an existing issuse by voting it up. When submitting a
105
+ bug report, please include a [Gist](https://gist.github.com/) that includes a stack trace and any
106
+ details that may be necessary to reproduce the bug, including your gem version, Ruby version, and
107
+ operating system. Ideally, a bug report should include a pull request with failing specs.
108
+
109
+ Submitting a Pull Request
110
+ -------------------------
111
+ 1. Fork the project.
112
+ 2. Create a topic branch.
113
+ 3. Implement your feature or bug fix.
114
+ 4. Add documentation for your feature or bug fix.
115
+ 5. Run <tt>bundle exec rake doc:yard</tt>. If your changes are not 100% documented, go back to step 4.
116
+ 6. Add specs for your feature or bug fix.
117
+ 7. Run <tt>bundle exec rake spec</tt>. If your changes are not 100% covered, go back to step 6.
118
+ 8. Commit and push your changes.
119
+ 9. Submit a pull request. Please do not include changes to the gemspec, version, or history file. (If you want to create your own version for some reason, please do so in a separate commit.)
120
+
121
+ Copyright
122
+ ---------
123
+ Copyright (c) 2011 Erik Michaels-Ober.
124
+ See [LICENSE](https://github.com/sferik/gems/blob/master/LICENSE.md) for details.
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env rake
2
+
3
+ require 'bundler'
4
+ Bundler::GemHelper.install_tasks
5
+
6
+ require 'rspec/core/rake_task'
7
+ RSpec::Core::RakeTask.new(:spec)
8
+
9
+ task :default => :spec
10
+ task :test => :spec
11
+
12
+ require 'yard'
13
+ namespace :doc do
14
+ YARD::Rake::YardocTask.new do |task|
15
+ task.files = ['LICENSE.md', 'lib/**/*.rb']
16
+ task.options = ['--markup', 'markdown']
17
+ end
18
+ end
@@ -0,0 +1,30 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/gems/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.add_development_dependency 'ZenTest', '~> 4.5'
6
+ gem.add_development_dependency 'maruku', '~> 0.6'
7
+ gem.add_development_dependency 'rake', '~> 0.9'
8
+ gem.add_development_dependency 'rspec', '~> 2.6'
9
+ gem.add_development_dependency 'simplecov', '~> 0.4'
10
+ gem.add_development_dependency 'webmock', '~> 1.6'
11
+ gem.add_development_dependency 'yard', '~> 0.7'
12
+ gem.add_runtime_dependency 'faraday', '~> 0.6.1'
13
+ gem.add_runtime_dependency 'faraday_middleware', '~> 0.6.3'
14
+ gem.add_runtime_dependency 'hashie', '~> 1.0.0'
15
+ gem.add_runtime_dependency 'multi_json', '~> 1.0.3'
16
+ gem.add_runtime_dependency 'rash', '~> 0.3.0'
17
+
18
+ gem.authors = ["Erik Michaels-Ober"]
19
+ gem.email = ['sferik@gmail.com']
20
+ gem.description = %q{Ruby wrapper for the RubyGems.org API}
21
+ gem.summary = gem.description
22
+ gem.homepage = 'https://github.com/sferik/gems'
23
+
24
+ gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
25
+ gem.files = `git ls-files`.split("\n")
26
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
27
+ gem.name = 'gems'
28
+ gem.require_paths = ['lib']
29
+ gem.version = Gems::VERSION
30
+ end
@@ -0,0 +1,20 @@
1
+ require 'gems/client'
2
+
3
+ module Gems
4
+ # Alias for Gems::Client.new
5
+ #
6
+ # @return [Gems::Client]
7
+ def self.new
8
+ Gems::Client.new
9
+ end
10
+
11
+ # Delegate to Gems::Client
12
+ def self.method_missing(method, *args, &block)
13
+ return super unless new.respond_to?(method)
14
+ new.send(method, *args, &block)
15
+ end
16
+
17
+ def self.respond_to?(method, include_private=false)
18
+ new.respond_to?(method, include_private) || super(method, include_private)
19
+ end
20
+ end
@@ -0,0 +1,54 @@
1
+ require 'gems/connection'
2
+ require 'gems/request'
3
+
4
+ module Gems
5
+ class Client
6
+ include Gems::Connection
7
+ include Gems::Request
8
+
9
+ # Returns some basic information about the given gem
10
+ #
11
+ # @param gem [String] The name of a gem.
12
+ # @param options [Hash] A customizable set of options.
13
+ # @return [Hashie::Mash]
14
+ # @example
15
+ # Gems.info 'rails'
16
+ def info(gem, options={})
17
+ get("/api/v1/gems/#{gem}.json", options)
18
+ end
19
+
20
+ # Returns an array of active gems that match the query
21
+ #
22
+ # @param query [String] A term to search for.
23
+ # @param options [Hash] A customizable set of options.
24
+ # @return [Array<Hashie::Mash>]
25
+ # @example
26
+ # Gems.search 'cucumber'
27
+ def search(query, options={})
28
+ get("/api/v1/gems/search.json", options.merge(:query => query))
29
+ end
30
+
31
+ # Returns an array of gem version details
32
+ #
33
+ # @param gem [String] The name of a gem.
34
+ # @param options [Hash] A customizable set of options.
35
+ # @return [Hashie::Mash]
36
+ # @example
37
+ # Gems.versions 'coulda'
38
+ def versions(gem, options={})
39
+ get("/api/v1/versions/#{gem}.json", options)
40
+ end
41
+
42
+ # Returns the number of downloads by day for a particular gem version
43
+ #
44
+ # @param gem [String] The name of a gem.
45
+ # @param version [String] The version of a gem.
46
+ # @param options [Hash] A customizable set of options.
47
+ # @return [Hashie::Mash]
48
+ # @example
49
+ # Gems.downloads 'coulda', '0.6.3'
50
+ def downloads(gem, version, options={})
51
+ get("/api/v1/versions/#{gem}-#{version}/downloads.json", options)
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,17 @@
1
+ require 'faraday_middleware'
2
+
3
+ module Gems
4
+ module Connection
5
+ private
6
+
7
+ def connection
8
+ Faraday.new(:url => 'http://rubygems.org') do |connection|
9
+ connection.use Faraday::Request::UrlEncoded
10
+ connection.use Faraday::Response::RaiseError
11
+ connection.use Faraday::Response::Rashify
12
+ connection.use Faraday::Response::ParseJson
13
+ connection.adapter(Faraday.default_adapter)
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,16 @@
1
+ module Gems
2
+ module Request
3
+ def get(path, options={})
4
+ request(:get, path, options)
5
+ end
6
+
7
+ private
8
+
9
+ def request(method, path, options)
10
+ response = connection.send(method) do |request|
11
+ request.url(path, options)
12
+ end
13
+ response.body
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,3 @@
1
+ module Gems
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1 @@
1
+ 701243f217cdf23b1370c7b66b65ca97
@@ -0,0 +1 @@
1
+ [{"number":"0.6.3","built_at":"2010-12-23T05:00:00Z","prerelease":false,"downloads_count":598,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.6.1","built_at":"2010-11-20T05:00:00Z","prerelease":false,"downloads_count":267,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.6.0","built_at":"2010-10-29T04:00:00Z","prerelease":false,"downloads_count":262,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.5","built_at":"2010-09-10T04:00:00Z","prerelease":false,"downloads_count":211,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.3","built_at":"2009-12-08T05:00:00Z","prerelease":false,"downloads_count":722,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.2","built_at":"2009-12-06T05:00:00Z","prerelease":false,"downloads_count":369,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.1","built_at":"2009-12-04T05:00:00Z","prerelease":false,"downloads_count":347,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.0","built_at":"2009-12-04T05:00:00Z","prerelease":false,"downloads_count":347,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.7","built_at":"2009-11-30T05:00:00Z","prerelease":false,"downloads_count":347,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.6","built_at":"2009-11-30T05:00:00Z","prerelease":false,"downloads_count":344,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.5","built_at":"2009-11-26T05:00:00Z","prerelease":false,"downloads_count":349,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.4","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":348,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.3","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":345,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.2","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":345,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.1","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":349,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.0","built_at":"2009-11-23T05:00:00Z","prerelease":false,"downloads_count":351,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.3.1","built_at":"2009-09-23T07:00:00Z","prerelease":false,"downloads_count":380,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.3.0","built_at":"2009-09-23T07:00:00Z","prerelease":false,"downloads_count":328,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.2.0","built_at":"2009-09-12T07:00:00Z","prerelease":false,"downloads_count":329,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"}]
@@ -0,0 +1,872 @@
1
+ [{:number=>"3.0.8.rc2",
2
+ :platform=>"ruby",
3
+ :name=>"rails",
4
+ :dependencies=>
5
+ [["bundler", "~> 1.0"],
6
+ ["railties", "= 3.0.8.rc2"],
7
+ ["actionmailer", "= 3.0.8.rc2"],
8
+ ["activeresource", "= 3.0.8.rc2"],
9
+ ["activerecord", "= 3.0.8.rc2"],
10
+ ["actionpack", "= 3.0.8.rc2"],
11
+ ["activesupport", "= 3.0.8.rc2"]]},
12
+ {:number=>"3.0.8.rc1",
13
+ :platform=>"ruby",
14
+ :name=>"rails",
15
+ :dependencies=>
16
+ [["bundler", "~> 1.0"],
17
+ ["railties", "= 3.0.8.rc1"],
18
+ ["actionmailer", "= 3.0.8.rc1"],
19
+ ["activeresource", "= 3.0.8.rc1"],
20
+ ["activerecord", "= 3.0.8.rc1"],
21
+ ["actionpack", "= 3.0.8.rc1"],
22
+ ["activesupport", "= 3.0.8.rc1"]]},
23
+ {:number=>"3.1.0.rc1",
24
+ :platform=>"ruby",
25
+ :name=>"rails",
26
+ :dependencies=>
27
+ [["bundler", "~> 1.0"],
28
+ ["railties", "= 3.1.0.rc1"],
29
+ ["actionmailer", "= 3.1.0.rc1"],
30
+ ["activeresource", "= 3.1.0.rc1"],
31
+ ["activerecord", "= 3.1.0.rc1"],
32
+ ["actionpack", "= 3.1.0.rc1"],
33
+ ["activesupport", "= 3.1.0.rc1"]]},
34
+ {:number=>"3.1.0.beta1",
35
+ :platform=>"ruby",
36
+ :name=>"rails",
37
+ :dependencies=>
38
+ [["bundler", "~> 1.0"],
39
+ ["railties", "= 3.1.0.beta1"],
40
+ ["actionmailer", "= 3.1.0.beta1"],
41
+ ["activeresource", "= 3.1.0.beta1"],
42
+ ["activerecord", "= 3.1.0.beta1"],
43
+ ["actionpack", "= 3.1.0.beta1"],
44
+ ["activesupport", "= 3.1.0.beta1"]]},
45
+ {:number=>"3.0.7",
46
+ :platform=>"ruby",
47
+ :name=>"rails",
48
+ :dependencies=>
49
+ [["bundler", "~> 1.0"],
50
+ ["railties", "= 3.0.7"],
51
+ ["actionmailer", "= 3.0.7"],
52
+ ["activeresource", "= 3.0.7"],
53
+ ["activerecord", "= 3.0.7"],
54
+ ["actionpack", "= 3.0.7"],
55
+ ["activesupport", "= 3.0.7"]]},
56
+ {:number=>"3.0.7.rc2",
57
+ :platform=>"ruby",
58
+ :name=>"rails",
59
+ :dependencies=>
60
+ [["bundler", "~> 1.0"],
61
+ ["railties", "= 3.0.7.rc2"],
62
+ ["actionmailer", "= 3.0.7.rc2"],
63
+ ["activeresource", "= 3.0.7.rc2"],
64
+ ["activerecord", "= 3.0.7.rc2"],
65
+ ["actionpack", "= 3.0.7.rc2"],
66
+ ["activesupport", "= 3.0.7.rc2"]]},
67
+ {:number=>"3.0.7.rc1",
68
+ :platform=>"ruby",
69
+ :name=>"rails",
70
+ :dependencies=>
71
+ [["bundler", "~> 1.0"],
72
+ ["railties", "= 3.0.7.rc1"],
73
+ ["actionmailer", "= 3.0.7.rc1"],
74
+ ["activeresource", "= 3.0.7.rc1"],
75
+ ["activerecord", "= 3.0.7.rc1"],
76
+ ["actionpack", "= 3.0.7.rc1"],
77
+ ["activesupport", "= 3.0.7.rc1"]]},
78
+ {:number=>"3.0.6",
79
+ :platform=>"ruby",
80
+ :name=>"rails",
81
+ :dependencies=>
82
+ [["bundler", "~> 1.0"],
83
+ ["railties", "= 3.0.6"],
84
+ ["actionmailer", "= 3.0.6"],
85
+ ["activeresource", "= 3.0.6"],
86
+ ["activerecord", "= 3.0.6"],
87
+ ["actionpack", "= 3.0.6"],
88
+ ["activesupport", "= 3.0.6"]]},
89
+ {:number=>"3.0.6.rc2",
90
+ :platform=>"ruby",
91
+ :name=>"rails",
92
+ :dependencies=>
93
+ [["bundler", "~> 1.0"],
94
+ ["railties", "= 3.0.6.rc2"],
95
+ ["actionmailer", "= 3.0.6.rc2"],
96
+ ["activeresource", "= 3.0.6.rc2"],
97
+ ["activerecord", "= 3.0.6.rc2"],
98
+ ["actionpack", "= 3.0.6.rc2"],
99
+ ["activesupport", "= 3.0.6.rc2"]]},
100
+ {:number=>"3.0.6.rc1",
101
+ :platform=>"ruby",
102
+ :name=>"rails",
103
+ :dependencies=>
104
+ [["bundler", "~> 1.0"],
105
+ ["railties", "= 3.0.6.rc1"],
106
+ ["actionmailer", "= 3.0.6.rc1"],
107
+ ["activeresource", "= 3.0.6.rc1"],
108
+ ["activerecord", "= 3.0.6.rc1"],
109
+ ["actionpack", "= 3.0.6.rc1"],
110
+ ["activesupport", "= 3.0.6.rc1"]]},
111
+ {:number=>"3.0.5",
112
+ :platform=>"ruby",
113
+ :name=>"rails",
114
+ :dependencies=>
115
+ [["bundler", "~> 1.0"],
116
+ ["railties", "= 3.0.5"],
117
+ ["actionmailer", "= 3.0.5"],
118
+ ["activeresource", "= 3.0.5"],
119
+ ["activerecord", "= 3.0.5"],
120
+ ["actionpack", "= 3.0.5"],
121
+ ["activesupport", "= 3.0.5"]]},
122
+ {:number=>"3.0.5.rc1",
123
+ :platform=>"ruby",
124
+ :name=>"rails",
125
+ :dependencies=>
126
+ [["bundler", "~> 1.0"],
127
+ ["railties", "= 3.0.5.rc1"],
128
+ ["actionmailer", "= 3.0.5.rc1"],
129
+ ["activeresource", "= 3.0.5.rc1"],
130
+ ["activerecord", "= 3.0.5.rc1"],
131
+ ["actionpack", "= 3.0.5.rc1"],
132
+ ["activesupport", "= 3.0.5.rc1"]]},
133
+ {:number=>"3.0.4",
134
+ :platform=>"ruby",
135
+ :name=>"rails",
136
+ :dependencies=>
137
+ [["bundler", "~> 1.0"],
138
+ ["railties", "= 3.0.4"],
139
+ ["actionmailer", "= 3.0.4"],
140
+ ["activeresource", "= 3.0.4"],
141
+ ["activerecord", "= 3.0.4"],
142
+ ["actionpack", "= 3.0.4"],
143
+ ["activesupport", "= 3.0.4"]]},
144
+ {:number=>"2.3.11",
145
+ :platform=>"ruby",
146
+ :name=>"rails",
147
+ :dependencies=>
148
+ [["activeresource", "= 2.3.11"],
149
+ ["actionmailer", "= 2.3.11"],
150
+ ["actionpack", "= 2.3.11"],
151
+ ["activerecord", "= 2.3.11"],
152
+ ["activesupport", "= 2.3.11"],
153
+ ["rake", ">= 0.8.3"]]},
154
+ {:number=>"3.0.4.rc1",
155
+ :platform=>"ruby",
156
+ :name=>"rails",
157
+ :dependencies=>
158
+ [["bundler", "~> 1.0"],
159
+ ["railties", "= 3.0.4.rc1"],
160
+ ["actionmailer", "= 3.0.4.rc1"],
161
+ ["activeresource", "= 3.0.4.rc1"],
162
+ ["activerecord", "= 3.0.4.rc1"],
163
+ ["actionpack", "= 3.0.4.rc1"],
164
+ ["activesupport", "= 3.0.4.rc1"]]},
165
+ {:number=>"3.0.3",
166
+ :platform=>"ruby",
167
+ :name=>"rails",
168
+ :dependencies=>
169
+ [["bundler", "~> 1.0"],
170
+ ["railties", "= 3.0.3"],
171
+ ["actionmailer", "= 3.0.3"],
172
+ ["activeresource", "= 3.0.3"],
173
+ ["activerecord", "= 3.0.3"],
174
+ ["actionpack", "= 3.0.3"],
175
+ ["activesupport", "= 3.0.3"]]},
176
+ {:number=>"3.0.2",
177
+ :platform=>"ruby",
178
+ :name=>"rails",
179
+ :dependencies=>
180
+ [["bundler", "~> 1.0.0"],
181
+ ["railties", "= 3.0.2"],
182
+ ["actionmailer", "= 3.0.2"],
183
+ ["activeresource", "= 3.0.2"],
184
+ ["activerecord", "= 3.0.2"],
185
+ ["actionpack", "= 3.0.2"],
186
+ ["activesupport", "= 3.0.2"]]},
187
+ {:number=>"3.0.1",
188
+ :platform=>"ruby",
189
+ :name=>"rails",
190
+ :dependencies=>
191
+ [["bundler", "~> 1.0.0"],
192
+ ["railties", "= 3.0.1"],
193
+ ["actionmailer", "= 3.0.1"],
194
+ ["activeresource", "= 3.0.1"],
195
+ ["activerecord", "= 3.0.1"],
196
+ ["actionpack", "= 3.0.1"],
197
+ ["activesupport", "= 3.0.1"]]},
198
+ {:number=>"2.3.10",
199
+ :platform=>"ruby",
200
+ :name=>"rails",
201
+ :dependencies=>
202
+ [["activeresource", "= 2.3.10"],
203
+ ["actionmailer", "= 2.3.10"],
204
+ ["actionpack", "= 2.3.10"],
205
+ ["activerecord", "= 2.3.10"],
206
+ ["activesupport", "= 2.3.10"],
207
+ ["rake", ">= 0.8.3"]]},
208
+ {:number=>"2.3.9",
209
+ :platform=>"ruby",
210
+ :name=>"rails",
211
+ :dependencies=>
212
+ [["activeresource", "= 2.3.9"],
213
+ ["actionmailer", "= 2.3.9"],
214
+ ["actionpack", "= 2.3.9"],
215
+ ["activerecord", "= 2.3.9"],
216
+ ["activesupport", "= 2.3.9"],
217
+ ["rake", ">= 0.8.3"]]},
218
+ {:number=>"2.3.9.pre",
219
+ :platform=>"ruby",
220
+ :name=>"rails",
221
+ :dependencies=>
222
+ [["activeresource", "= 2.3.9.pre"],
223
+ ["actionmailer", "= 2.3.9.pre"],
224
+ ["actionpack", "= 2.3.9.pre"],
225
+ ["activerecord", "= 2.3.9.pre"],
226
+ ["activesupport", "= 2.3.9.pre"],
227
+ ["rake", ">= 0.8.3"]]},
228
+ {:number=>"3.0.0",
229
+ :platform=>"ruby",
230
+ :name=>"rails",
231
+ :dependencies=>
232
+ [["bundler", "~> 1.0.0"],
233
+ ["railties", "= 3.0.0"],
234
+ ["actionmailer", "= 3.0.0"],
235
+ ["activeresource", "= 3.0.0"],
236
+ ["activerecord", "= 3.0.0"],
237
+ ["actionpack", "= 3.0.0"],
238
+ ["activesupport", "= 3.0.0"]]},
239
+ {:number=>"3.0.0.rc2",
240
+ :platform=>"ruby",
241
+ :name=>"rails",
242
+ :dependencies=>
243
+ [["bundler", ">= 1.0.0.rc.6"],
244
+ ["railties", "= 3.0.0.rc2"],
245
+ ["actionmailer", "= 3.0.0.rc2"],
246
+ ["activeresource", "= 3.0.0.rc2"],
247
+ ["activerecord", "= 3.0.0.rc2"],
248
+ ["actionpack", "= 3.0.0.rc2"],
249
+ ["activesupport", "= 3.0.0.rc2"]]},
250
+ {:number=>"3.0.0.rc",
251
+ :platform=>"ruby",
252
+ :name=>"rails",
253
+ :dependencies=>
254
+ [["bundler", ">= 1.0.0.rc.1"],
255
+ ["railties", "= 3.0.0.rc"],
256
+ ["actionmailer", "= 3.0.0.rc"],
257
+ ["activeresource", "= 3.0.0.rc"],
258
+ ["activerecord", "= 3.0.0.rc"],
259
+ ["actionpack", "= 3.0.0.rc"],
260
+ ["activesupport", "= 3.0.0.rc"]]},
261
+ {:number=>"3.0.0.beta4",
262
+ :platform=>"ruby",
263
+ :name=>"rails",
264
+ :dependencies=>
265
+ [["bundler", ">= 0.9.26"],
266
+ ["railties", "= 3.0.0.beta4"],
267
+ ["actionmailer", "= 3.0.0.beta4"],
268
+ ["activeresource", "= 3.0.0.beta4"],
269
+ ["activerecord", "= 3.0.0.beta4"],
270
+ ["actionpack", "= 3.0.0.beta4"],
271
+ ["activesupport", "= 3.0.0.beta4"]]},
272
+ {:number=>"2.3.8",
273
+ :platform=>"ruby",
274
+ :name=>"rails",
275
+ :dependencies=>
276
+ [["activeresource", "= 2.3.8"],
277
+ ["actionmailer", "= 2.3.8"],
278
+ ["actionpack", "= 2.3.8"],
279
+ ["activerecord", "= 2.3.8"],
280
+ ["activesupport", "= 2.3.8"],
281
+ ["rake", ">= 0.8.3"]]},
282
+ {:number=>"2.3.8.pre1",
283
+ :platform=>"ruby",
284
+ :name=>"rails",
285
+ :dependencies=>
286
+ [["activeresource", "= 2.3.8.pre1"],
287
+ ["actionmailer", "= 2.3.8.pre1"],
288
+ ["actionpack", "= 2.3.8.pre1"],
289
+ ["activerecord", "= 2.3.8.pre1"],
290
+ ["activesupport", "= 2.3.8.pre1"],
291
+ ["rake", ">= 0.8.3"]]},
292
+ {:number=>"2.3.7",
293
+ :platform=>"ruby",
294
+ :name=>"rails",
295
+ :dependencies=>
296
+ [["activeresource", "= 2.3.7"],
297
+ ["actionmailer", "= 2.3.7"],
298
+ ["actionpack", "= 2.3.7"],
299
+ ["activerecord", "= 2.3.7"],
300
+ ["activesupport", "= 2.3.7"],
301
+ ["rake", ">= 0.8.3"]]},
302
+ {:number=>"2.3.6",
303
+ :platform=>"ruby",
304
+ :name=>"rails",
305
+ :dependencies=>
306
+ [["activeresource", "= 2.3.6"],
307
+ ["actionmailer", "= 2.3.6"],
308
+ ["actionpack", "= 2.3.6"],
309
+ ["activerecord", "= 2.3.6"],
310
+ ["activesupport", "= 2.3.6"],
311
+ ["rake", ">= 0.8.3"]]},
312
+ {:number=>"3.0.0.beta3",
313
+ :platform=>"ruby",
314
+ :name=>"rails",
315
+ :dependencies=>
316
+ [["bundler", ">= 0.9.19"],
317
+ ["railties", "= 3.0.0.beta3"],
318
+ ["actionmailer", "= 3.0.0.beta3"],
319
+ ["activeresource", "= 3.0.0.beta3"],
320
+ ["activerecord", "= 3.0.0.beta3"],
321
+ ["actionpack", "= 3.0.0.beta3"],
322
+ ["activesupport", "= 3.0.0.beta3"]]},
323
+ {:number=>"3.0.0.beta2",
324
+ :platform=>"ruby",
325
+ :name=>"rails",
326
+ :dependencies=>
327
+ [["bundler", ">= 0.9.14"],
328
+ ["railties", "= 3.0.0.beta2"],
329
+ ["actionmailer", "= 3.0.0.beta2"],
330
+ ["activeresource", "= 3.0.0.beta2"],
331
+ ["activerecord", "= 3.0.0.beta2"],
332
+ ["actionpack", "= 3.0.0.beta2"],
333
+ ["activesupport", "= 3.0.0.beta2"]]},
334
+ {:number=>"3.0.0.beta",
335
+ :platform=>"ruby",
336
+ :name=>"rails",
337
+ :dependencies=>
338
+ [["bundler", ">= 0.9.2"],
339
+ ["railties", "= 3.0.0.beta"],
340
+ ["actionmailer", "= 3.0.0.beta"],
341
+ ["activeresource", "= 3.0.0.beta"],
342
+ ["activerecord", "= 3.0.0.beta"],
343
+ ["actionpack", "= 3.0.0.beta"],
344
+ ["activesupport", "= 3.0.0.beta"]]},
345
+ {:number=>"2.3.5",
346
+ :platform=>"ruby",
347
+ :name=>"rails",
348
+ :dependencies=>
349
+ [["activeresource", "= 2.3.5"],
350
+ ["actionmailer", "= 2.3.5"],
351
+ ["actionpack", "= 2.3.5"],
352
+ ["activerecord", "= 2.3.5"],
353
+ ["activesupport", "= 2.3.5"],
354
+ ["rake", ">= 0.8.3"]]},
355
+ {:number=>"2.2.3",
356
+ :platform=>"ruby",
357
+ :name=>"rails",
358
+ :dependencies=>
359
+ [["activeresource", "= 2.2.3"],
360
+ ["actionmailer", "= 2.2.3"],
361
+ ["actionpack", "= 2.2.3"],
362
+ ["activerecord", "= 2.2.3"],
363
+ ["activesupport", "= 2.2.3"],
364
+ ["rake", ">= 0.8.3"]]},
365
+ {:number=>"2.3.4",
366
+ :platform=>"ruby",
367
+ :name=>"rails",
368
+ :dependencies=>
369
+ [["activeresource", "= 2.3.4"],
370
+ ["actionmailer", "= 2.3.4"],
371
+ ["actionpack", "= 2.3.4"],
372
+ ["activerecord", "= 2.3.4"],
373
+ ["activesupport", "= 2.3.4"],
374
+ ["rake", ">= 0.8.3"]]},
375
+ {:number=>"2.3.3",
376
+ :platform=>"ruby",
377
+ :name=>"rails",
378
+ :dependencies=>
379
+ [["activeresource", "= 2.3.3"],
380
+ ["actionmailer", "= 2.3.3"],
381
+ ["actionpack", "= 2.3.3"],
382
+ ["activerecord", "= 2.3.3"],
383
+ ["activesupport", "= 2.3.3"],
384
+ ["rake", ">= 0.8.3"]]},
385
+ {:number=>"0.10.0",
386
+ :platform=>"ruby",
387
+ :name=>"rails",
388
+ :dependencies=>
389
+ [["actionwebservice", "= 0.5.0"],
390
+ ["actionmailer", "= 0.7.0"],
391
+ ["actionpack", "= 1.5.0"],
392
+ ["activerecord", "= 1.7.0"],
393
+ ["activesupport", "= 1.0.0"],
394
+ ["rake", ">= 0.4.15"]]},
395
+ {:number=>"0.10.1",
396
+ :platform=>"ruby",
397
+ :name=>"rails",
398
+ :dependencies=>
399
+ [["actionwebservice", "= 0.6.0"],
400
+ ["actionmailer", "= 0.7.1"],
401
+ ["actionpack", "= 1.5.1"],
402
+ ["activerecord", "= 1.8.0"],
403
+ ["activesupport", "= 1.0.1"],
404
+ ["rake", ">= 0.4.15"]]},
405
+ {:number=>"0.11.0",
406
+ :platform=>"ruby",
407
+ :name=>"rails",
408
+ :dependencies=>
409
+ [["actionwebservice", "= 0.6.1"],
410
+ ["actionmailer", "= 0.8.0"],
411
+ ["actionpack", "= 1.6.0"],
412
+ ["activerecord", "= 1.9.0"],
413
+ ["activesupport", "= 1.0.2"],
414
+ ["rake", ">= 0.4.15"]]},
415
+ {:number=>"0.11.1",
416
+ :platform=>"ruby",
417
+ :name=>"rails",
418
+ :dependencies=>
419
+ [["actionwebservice", "= 0.6.2"],
420
+ ["actionmailer", "= 0.8.1"],
421
+ ["actionpack", "= 1.7.0"],
422
+ ["activerecord", "= 1.9.1"],
423
+ ["activesupport", "= 1.0.3"],
424
+ ["rake", ">= 0.5.0"]]},
425
+ {:number=>"0.12.0",
426
+ :platform=>"ruby",
427
+ :name=>"rails",
428
+ :dependencies=>
429
+ [["actionwebservice", "= 0.7.0"],
430
+ ["actionmailer", "= 0.9.0"],
431
+ ["actionpack", "= 1.8.0"],
432
+ ["activerecord", "= 1.10.0"],
433
+ ["activesupport", "= 1.0.4"],
434
+ ["rake", ">= 0.5.3"]]},
435
+ {:number=>"0.12.1",
436
+ :platform=>"ruby",
437
+ :name=>"rails",
438
+ :dependencies=>
439
+ [["actionwebservice", "= 0.7.1"],
440
+ ["actionmailer", "= 0.9.1"],
441
+ ["actionpack", "= 1.8.1"],
442
+ ["activerecord", "= 1.10.1"],
443
+ ["activesupport", "= 1.0.4"],
444
+ ["rake", ">= 0.5.3"]]},
445
+ {:number=>"0.13.0",
446
+ :platform=>"ruby",
447
+ :name=>"rails",
448
+ :dependencies=>
449
+ [["actionwebservice", "= 0.8.0"],
450
+ ["actionmailer", "= 1.0.0"],
451
+ ["actionpack", "= 1.9.0"],
452
+ ["activerecord", "= 1.11.0"],
453
+ ["activesupport", "= 1.1.0"],
454
+ ["rake", ">= 0.5.3"]]},
455
+ {:number=>"0.13.1",
456
+ :platform=>"ruby",
457
+ :name=>"rails",
458
+ :dependencies=>
459
+ [["actionwebservice", "= 0.8.1"],
460
+ ["actionmailer", "= 1.0.1"],
461
+ ["actionpack", "= 1.9.1"],
462
+ ["activerecord", "= 1.11.1"],
463
+ ["activesupport", "= 1.1.1"],
464
+ ["rake", ">= 0.5.3"]]},
465
+ {:number=>"0.14.1",
466
+ :platform=>"ruby",
467
+ :name=>"rails",
468
+ :dependencies=>
469
+ [["actionwebservice", "= 0.9.1"],
470
+ ["actionmailer", "= 1.1.1"],
471
+ ["actionpack", "= 1.10.1"],
472
+ ["activerecord", "= 1.12.1"],
473
+ ["activesupport", "= 1.2.1"],
474
+ ["rake", ">= 0.6.2"]]},
475
+ {:number=>"0.14.2",
476
+ :platform=>"ruby",
477
+ :name=>"rails",
478
+ :dependencies=>
479
+ [["actionwebservice", "= 0.9.2"],
480
+ ["actionmailer", "= 1.1.2"],
481
+ ["actionpack", "= 1.10.2"],
482
+ ["activerecord", "= 1.12.2"],
483
+ ["activesupport", "= 1.2.2"],
484
+ ["rake", ">= 0.6.2"]]},
485
+ {:number=>"0.14.3",
486
+ :platform=>"ruby",
487
+ :name=>"rails",
488
+ :dependencies=>
489
+ [["actionwebservice", "= 0.9.3"],
490
+ ["actionmailer", "= 1.1.3"],
491
+ ["actionpack", "= 1.11.0"],
492
+ ["activerecord", "= 1.13.0"],
493
+ ["activesupport", "= 1.2.3"],
494
+ ["rake", ">= 0.6.2"]]},
495
+ {:number=>"0.14.4",
496
+ :platform=>"ruby",
497
+ :name=>"rails",
498
+ :dependencies=>
499
+ [["actionwebservice", "= 0.9.4"],
500
+ ["actionmailer", "= 1.1.4"],
501
+ ["actionpack", "= 1.11.1"],
502
+ ["activerecord", "= 1.13.1"],
503
+ ["activesupport", "= 1.2.4"],
504
+ ["rake", ">= 0.6.2"]]},
505
+ {:number=>"0.8.0",
506
+ :platform=>"ruby",
507
+ :name=>"rails",
508
+ :dependencies=>
509
+ [["actionmailer", ">= 0.3.0"],
510
+ ["actionpack", ">= 0.9.0"],
511
+ ["activerecord", ">= 1.0.0"],
512
+ ["rake", ">= 0.4.4"]]},
513
+ {:number=>"0.8.5",
514
+ :platform=>"ruby",
515
+ :name=>"rails",
516
+ :dependencies=>
517
+ [["actionmailer", ">= 0.4.0"],
518
+ ["actionpack", ">= 0.9.5"],
519
+ ["activerecord", ">= 1.1.0"],
520
+ ["rake", ">= 0.4.11"]]},
521
+ {:number=>"0.9.0",
522
+ :platform=>"ruby",
523
+ :name=>"rails",
524
+ :dependencies=>
525
+ [["actionmailer", ">= 0.4.0"],
526
+ ["actionpack", ">= 0.9.5"],
527
+ ["activerecord", ">= 1.1.0"],
528
+ ["rake", ">= 0.4.11"]]},
529
+ {:number=>"0.9.1",
530
+ :platform=>"ruby",
531
+ :name=>"rails",
532
+ :dependencies=>
533
+ [["actionmailer", ">= 0.5.0"],
534
+ ["actionpack", ">= 1.0.1"],
535
+ ["activerecord", ">= 1.2.0"],
536
+ ["rake", ">= 0.4.11"]]},
537
+ {:number=>"0.9.2",
538
+ :platform=>"ruby",
539
+ :name=>"rails",
540
+ :dependencies=>
541
+ [["actionmailer", ">= 0.5.0"],
542
+ ["actionpack", ">= 1.1.0"],
543
+ ["activerecord", ">= 1.3.0"],
544
+ ["rake", ">= 0.4.11"]]},
545
+ {:number=>"0.9.3",
546
+ :platform=>"ruby",
547
+ :name=>"rails",
548
+ :dependencies=>
549
+ [["actionmailer", ">= 0.5.0"],
550
+ ["actionpack", ">= 1.2.0"],
551
+ ["activerecord", ">= 1.4.0"],
552
+ ["rake", ">= 0.4.15"]]},
553
+ {:number=>"0.9.4.1",
554
+ :platform=>"ruby",
555
+ :name=>"rails",
556
+ :dependencies=>
557
+ [["actionmailer", ">= 0.6.1"],
558
+ ["actionpack", ">= 1.3.1"],
559
+ ["activerecord", ">= 1.5.1"],
560
+ ["rake", ">= 0.4.15"]]},
561
+ {:number=>"0.9.4",
562
+ :platform=>"ruby",
563
+ :name=>"rails",
564
+ :dependencies=>
565
+ [["actionmailer", ">= 0.6.0"],
566
+ ["actionpack", ">= 1.3.0"],
567
+ ["activerecord", ">= 1.5.0"],
568
+ ["rake", ">= 0.4.15"]]},
569
+ {:number=>"0.9.5",
570
+ :platform=>"ruby",
571
+ :name=>"rails",
572
+ :dependencies=>
573
+ [["actionmailer", ">= 0.6.1"],
574
+ ["actionpack", ">= 1.4.0"],
575
+ ["activerecord", ">= 1.6.0"],
576
+ ["rake", ">= 0.4.15"]]},
577
+ {:number=>"1.0.0",
578
+ :platform=>"ruby",
579
+ :name=>"rails",
580
+ :dependencies=>
581
+ [["actionwebservice", "= 1.0.0"],
582
+ ["actionmailer", "= 1.1.5"],
583
+ ["actionpack", "= 1.11.2"],
584
+ ["activerecord", "= 1.13.2"],
585
+ ["activesupport", "= 1.2.5"],
586
+ ["rake", ">= 0.6.2"]]},
587
+ {:number=>"1.1.0",
588
+ :platform=>"ruby",
589
+ :name=>"rails",
590
+ :dependencies=>
591
+ [["actionwebservice", "= 1.1.0"],
592
+ ["actionmailer", "= 1.2.0"],
593
+ ["actionpack", "= 1.12.0"],
594
+ ["activerecord", "= 1.14.0"],
595
+ ["activesupport", "= 1.3.0"],
596
+ ["rake", ">= 0.7.0"]]},
597
+ {:number=>"1.1.1",
598
+ :platform=>"ruby",
599
+ :name=>"rails",
600
+ :dependencies=>
601
+ [["actionwebservice", "= 1.1.1"],
602
+ ["actionmailer", "= 1.2.1"],
603
+ ["actionpack", "= 1.12.1"],
604
+ ["activerecord", "= 1.14.1"],
605
+ ["activesupport", "= 1.3.1"],
606
+ ["rake", ">= 0.7.1"]]},
607
+ {:number=>"1.1.2",
608
+ :platform=>"ruby",
609
+ :name=>"rails",
610
+ :dependencies=>
611
+ [["actionwebservice", "= 1.1.2"],
612
+ ["actionmailer", "= 1.2.1"],
613
+ ["actionpack", "= 1.12.1"],
614
+ ["activerecord", "= 1.14.2"],
615
+ ["activesupport", "= 1.3.1"],
616
+ ["rake", ">= 0.7.1"]]},
617
+ {:number=>"1.1.3",
618
+ :platform=>"ruby",
619
+ :name=>"rails",
620
+ :dependencies=>
621
+ [["actionwebservice", "= 1.1.3"],
622
+ ["actionmailer", "= 1.2.2"],
623
+ ["actionpack", "= 1.12.2"],
624
+ ["activerecord", "= 1.14.3"],
625
+ ["activesupport", "= 1.3.1"],
626
+ ["rake", ">= 0.7.1"]]},
627
+ {:number=>"1.1.4",
628
+ :platform=>"ruby",
629
+ :name=>"rails",
630
+ :dependencies=>
631
+ [["actionwebservice", "= 1.1.4"],
632
+ ["actionmailer", "= 1.2.3"],
633
+ ["actionpack", "= 1.12.3"],
634
+ ["activerecord", "= 1.14.3"],
635
+ ["activesupport", "= 1.3.1"],
636
+ ["rake", ">= 0.7.1"]]},
637
+ {:number=>"1.1.5",
638
+ :platform=>"ruby",
639
+ :name=>"rails",
640
+ :dependencies=>
641
+ [["actionwebservice", "= 1.1.5"],
642
+ ["actionmailer", "= 1.2.4"],
643
+ ["actionpack", "= 1.12.4"],
644
+ ["activerecord", "= 1.14.4"],
645
+ ["activesupport", "= 1.3.1"],
646
+ ["rake", ">= 0.7.1"]]},
647
+ {:number=>"1.1.6",
648
+ :platform=>"ruby",
649
+ :name=>"rails",
650
+ :dependencies=>
651
+ [["actionwebservice", "= 1.1.6"],
652
+ ["actionmailer", "= 1.2.5"],
653
+ ["actionpack", "= 1.12.5"],
654
+ ["activerecord", "= 1.14.4"],
655
+ ["activesupport", "= 1.3.1"],
656
+ ["rake", ">= 0.7.1"]]},
657
+ {:number=>"1.2.0",
658
+ :platform=>"ruby",
659
+ :name=>"rails",
660
+ :dependencies=>
661
+ [["actionwebservice", "= 1.2.0"],
662
+ ["actionmailer", "= 1.3.0"],
663
+ ["actionpack", "= 1.13.0"],
664
+ ["activerecord", "= 1.15.0"],
665
+ ["activesupport", "= 1.4.0"],
666
+ ["rake", ">= 0.7.1"]]},
667
+ {:number=>"1.2.1",
668
+ :platform=>"ruby",
669
+ :name=>"rails",
670
+ :dependencies=>
671
+ [["actionwebservice", "= 1.2.1"],
672
+ ["actionmailer", "= 1.3.1"],
673
+ ["actionpack", "= 1.13.1"],
674
+ ["activerecord", "= 1.15.1"],
675
+ ["activesupport", "= 1.4.0"],
676
+ ["rake", ">= 0.7.1"]]},
677
+ {:number=>"1.2.2",
678
+ :platform=>"ruby",
679
+ :name=>"rails",
680
+ :dependencies=>
681
+ [["actionwebservice", "= 1.2.2"],
682
+ ["actionmailer", "= 1.3.2"],
683
+ ["actionpack", "= 1.13.2"],
684
+ ["activerecord", "= 1.15.2"],
685
+ ["activesupport", "= 1.4.1"],
686
+ ["rake", ">= 0.7.1"]]},
687
+ {:number=>"1.2.3",
688
+ :platform=>"ruby",
689
+ :name=>"rails",
690
+ :dependencies=>
691
+ [["actionwebservice", "= 1.2.3"],
692
+ ["actionmailer", "= 1.3.3"],
693
+ ["actionpack", "= 1.13.3"],
694
+ ["activerecord", "= 1.15.3"],
695
+ ["activesupport", "= 1.4.2"],
696
+ ["rake", ">= 0.7.2"]]},
697
+ {:number=>"1.2.4",
698
+ :platform=>"ruby",
699
+ :name=>"rails",
700
+ :dependencies=>
701
+ [["actionwebservice", "= 1.2.4"],
702
+ ["actionmailer", "= 1.3.4"],
703
+ ["actionpack", "= 1.13.4"],
704
+ ["activerecord", "= 1.15.4"],
705
+ ["activesupport", "= 1.4.3"],
706
+ ["rake", ">= 0.7.2"]]},
707
+ {:number=>"1.2.5",
708
+ :platform=>"ruby",
709
+ :name=>"rails",
710
+ :dependencies=>
711
+ [["actionwebservice", "= 1.2.5"],
712
+ ["actionmailer", "= 1.3.5"],
713
+ ["actionpack", "= 1.13.5"],
714
+ ["activerecord", "= 1.15.5"],
715
+ ["activesupport", "= 1.4.4"],
716
+ ["rake", ">= 0.7.2"]]},
717
+ {:number=>"1.2.6",
718
+ :platform=>"ruby",
719
+ :name=>"rails",
720
+ :dependencies=>
721
+ [["actionwebservice", "= 1.2.6"],
722
+ ["actionmailer", "= 1.3.6"],
723
+ ["actionpack", "= 1.13.6"],
724
+ ["activerecord", "= 1.15.6"],
725
+ ["activesupport", "= 1.4.4"],
726
+ ["rake", ">= 0.7.2"]]},
727
+ {:number=>"2.0.0",
728
+ :platform=>"ruby",
729
+ :name=>"rails",
730
+ :dependencies=>
731
+ [["activeresource", "= 2.0.0"],
732
+ ["actionmailer", "= 2.0.0"],
733
+ ["actionpack", "= 2.0.0"],
734
+ ["activerecord", "= 2.0.0"],
735
+ ["activesupport", "= 2.0.0"],
736
+ ["rake", ">= 0.7.2"]]},
737
+ {:number=>"2.0.1",
738
+ :platform=>"ruby",
739
+ :name=>"rails",
740
+ :dependencies=>
741
+ [["activeresource", "= 2.0.1"],
742
+ ["actionmailer", "= 2.0.1"],
743
+ ["actionpack", "= 2.0.1"],
744
+ ["activerecord", "= 2.0.1"],
745
+ ["activesupport", "= 2.0.1"],
746
+ ["rake", ">= 0.7.2"]]},
747
+ {:number=>"2.0.2",
748
+ :platform=>"ruby",
749
+ :name=>"rails",
750
+ :dependencies=>
751
+ [["activeresource", "= 2.0.2"],
752
+ ["actionmailer", "= 2.0.2"],
753
+ ["actionpack", "= 2.0.2"],
754
+ ["activerecord", "= 2.0.2"],
755
+ ["activesupport", "= 2.0.2"],
756
+ ["rake", ">= 0.7.2"]]},
757
+ {:number=>"2.0.4",
758
+ :platform=>"ruby",
759
+ :name=>"rails",
760
+ :dependencies=>
761
+ [["activeresource", "= 2.0.4"],
762
+ ["actionmailer", "= 2.0.4"],
763
+ ["actionpack", "= 2.0.4"],
764
+ ["activerecord", "= 2.0.4"],
765
+ ["activesupport", "= 2.0.4"],
766
+ ["rake", ">= 0.7.2"]]},
767
+ {:number=>"2.0.5",
768
+ :platform=>"ruby",
769
+ :name=>"rails",
770
+ :dependencies=>
771
+ [["activeresource", "= 2.0.5"],
772
+ ["actionmailer", "= 2.0.5"],
773
+ ["actionpack", "= 2.0.5"],
774
+ ["activerecord", "= 2.0.5"],
775
+ ["activesupport", "= 2.0.5"],
776
+ ["rake", ">= 0.7.2"]]},
777
+ {:number=>"2.1.0",
778
+ :platform=>"ruby",
779
+ :name=>"rails",
780
+ :dependencies=>
781
+ [["activeresource", "= 2.1.0"],
782
+ ["actionmailer", "= 2.1.0"],
783
+ ["actionpack", "= 2.1.0"],
784
+ ["activerecord", "= 2.1.0"],
785
+ ["activesupport", "= 2.1.0"],
786
+ ["rake", ">= 0.8.1"]]},
787
+ {:number=>"2.1.1",
788
+ :platform=>"ruby",
789
+ :name=>"rails",
790
+ :dependencies=>
791
+ [["activeresource", "= 2.1.1"],
792
+ ["actionmailer", "= 2.1.1"],
793
+ ["actionpack", "= 2.1.1"],
794
+ ["activerecord", "= 2.1.1"],
795
+ ["activesupport", "= 2.1.1"],
796
+ ["rake", ">= 0.8.1"]]},
797
+ {:number=>"2.1.2",
798
+ :platform=>"ruby",
799
+ :name=>"rails",
800
+ :dependencies=>
801
+ [["activeresource", "= 2.1.2"],
802
+ ["actionmailer", "= 2.1.2"],
803
+ ["actionpack", "= 2.1.2"],
804
+ ["activerecord", "= 2.1.2"],
805
+ ["activesupport", "= 2.1.2"],
806
+ ["rake", ">= 0.8.1"]]},
807
+ {:number=>"2.2.2",
808
+ :platform=>"ruby",
809
+ :name=>"rails",
810
+ :dependencies=>
811
+ [["activeresource", "= 2.2.2"],
812
+ ["actionmailer", "= 2.2.2"],
813
+ ["actionpack", "= 2.2.2"],
814
+ ["activerecord", "= 2.2.2"],
815
+ ["activesupport", "= 2.2.2"],
816
+ ["rake", ">= 0.8.3"]]},
817
+ {:number=>"2.3.2",
818
+ :platform=>"ruby",
819
+ :name=>"rails",
820
+ :dependencies=>
821
+ [["activeresource", "= 2.3.2"],
822
+ ["actionmailer", "= 2.3.2"],
823
+ ["actionpack", "= 2.3.2"],
824
+ ["activerecord", "= 2.3.2"],
825
+ ["activesupport", "= 2.3.2"],
826
+ ["rake", ">= 0.8.3"]]},
827
+ {:number=>"0.14.6",
828
+ :platform=>"ruby",
829
+ :name=>"thor",
830
+ :dependencies=>
831
+ [["simplecov", "~> 0.3"],
832
+ ["rspec", "~> 2.1"],
833
+ ["rake", ">= 0.8"],
834
+ ["rdoc", "~> 2.5"],
835
+ ["fakeweb", "~> 1.3"],
836
+ ["bundler", "~> 1.0"]]},
837
+ {:number=>"0.14.5",
838
+ :platform=>"ruby",
839
+ :name=>"thor",
840
+ :dependencies=>
841
+ [["simplecov", "~> 0.3"],
842
+ ["rspec", "~> 2.1"],
843
+ ["rdoc", "~> 2.5"],
844
+ ["fakeweb", "~> 1.3"],
845
+ ["bundler", "~> 1.0"]]},
846
+ {:number=>"0.14.4", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
847
+ {:number=>"0.14.3", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
848
+ {:number=>"0.14.2", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
849
+ {:number=>"0.14.1", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
850
+ {:number=>"0.14.0", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
851
+ {:number=>"0.13.8", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
852
+ {:number=>"0.13.7", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
853
+ {:number=>"0.13.6", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
854
+ {:number=>"0.13.5", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
855
+ {:number=>"0.13.4", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
856
+ {:number=>"0.13.3", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
857
+ {:number=>"0.13.2", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
858
+ {:number=>"0.13.1", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
859
+ {:number=>"0.13.0", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
860
+ {:number=>"0.12.3", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
861
+ {:number=>"0.12.2", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
862
+ {:number=>"0.12.0", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
863
+ {:number=>"0.11.8", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
864
+ {:number=>"0.11.7", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
865
+ {:number=>"0.11.6", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
866
+ {:number=>"0.11.5", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
867
+ {:number=>"0.9.2", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
868
+ {:number=>"0.9.5", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
869
+ {:number=>"0.9.6", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
870
+ {:number=>"0.9.7", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
871
+ {:number=>"0.9.8", :platform=>"ruby", :name=>"thor", :dependencies=>[]},
872
+ {:number=>"0.9.9", :platform=>"ruby", :name=>"thor", :dependencies=>[]}]