update_hints 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ rvm:
2
+ - 1.8.7
3
+ - 1.9.2
4
+ - 1.9.3
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ # -*- ruby -*-
2
+ source :rubygems
3
+ group :development do
4
+ gem "jeweler"
5
+ gem "rake"
6
+ gem "flexmock", "~>0.8"
7
+ end
@@ -1,12 +1,16 @@
1
- === 1.0.2 / 2011-05-25
1
+ === 1.0.3
2
+
3
+ * Improve handling of version numbers and ensure prerelease gems are not offered
4
+
5
+ === 1.0.2
2
6
 
3
7
  * Use the Gem::Version for version comparisons
4
8
 
5
- === 1.0.1 / 2011-05-25
9
+ === 1.0.1
6
10
 
7
11
  * End the last line of output with a newline (doh!)
8
12
 
9
- === 1.0.0 / 2011-05-25
13
+ === 1.0.0
10
14
 
11
15
  * 1 major enhancement
12
16
 
data/Rakefile CHANGED
@@ -1,14 +1,29 @@
1
1
  # -*- ruby -*-
2
2
 
3
3
  require 'rubygems'
4
- require 'hoe'
5
-
6
- Hoe.spec 'update_hints' do | s |
7
- s.readme_file = 'README.rdoc'
8
- s.extra_rdoc_files = FileList['*.rdoc'] + FileList['*.txt']
9
-
10
- s.developer('Julik Tarkhanov', 'me@julik.nl')
11
- s.extra_dev_deps = {"flexmock" => ">=0"}
4
+ require 'jeweler'
5
+ require './lib/update_hints'
6
+
7
+
8
+ Jeweler::Tasks.new do |gem|
9
+ gem.version = UpdateHints::VERSION
10
+ gem.name = "update_hints"
11
+ gem.summary = "Automatically check if a new version of your gem is available and notify users"
12
+ gem.email = "me@julik.nl"
13
+ gem.homepage = "http://github.com/julik/update_hints"
14
+ gem.authors = ["Julik Tarkhanov"]
15
+ gem.license = 'MIT'
16
+ end
17
+
18
+ Jeweler::RubygemsDotOrgTasks.new
19
+
20
+ require 'rake/testtask'
21
+ desc "Run all tests"
22
+ Rake::TestTask.new("test") do |t|
23
+ t.libs << "test"
24
+ t.pattern = 'test/**/test_*.rb'
25
+ t.verbose = true
12
26
  end
13
27
 
28
+ task :default => [ :test ]
14
29
  # vim: syntax=ruby
@@ -2,11 +2,10 @@ require "net/http"
2
2
  require "open-uri"
3
3
  require "timeout"
4
4
  require "rexml/document"
5
- require "rubygems"
5
+ require "rubygems" unless defined?(Gem)
6
6
 
7
7
  module UpdateHints
8
- VERSION = '1.0.2'
9
- GEMCUTTER_URI = "http://rubygems.org/api/v1/gems/%s.xml"
8
+ VERSION = '1.0.3'
10
9
 
11
10
  # Checks whether rubygems.org has a new version of this specific gem
12
11
  # and prints how an update can be obtained if need be.
@@ -14,32 +13,69 @@ module UpdateHints
14
13
  # reason the method is run while the app is offline
15
14
  def self.version_check(gem_name, present_version_str, destination = $stderr)
16
15
  begin
17
- version_check_without_exception_suppression(gem_name, present_version_str, destination)
16
+ version_check_without_exception_capture(gem_name, present_version_str, destination)
18
17
  rescue Exception
19
18
  end
20
19
  end
21
20
 
22
21
  private
23
22
 
24
- def self.version_check_without_exception_suppression(gem_name, present_version_str, destination)
25
- latest_version = extract_version_from_xml(open(GEMCUTTER_URI % gem_name))
23
+ def self.version_check_without_exception_capture(gem_name, present_version_str, destination)
26
24
  # Gem::Version was known to throw when a frozen string is passed to the constructor, see
27
25
  # https://github.com/rubygems/rubygems/commit/48f1d869510dcd325d6566df7d0147a086905380
28
- int_present, int_available = Gem::Version.new(present_version_str.dup), Gem::Version.new(latest_version.dup)
29
- if int_available > int_present
26
+ int_present = Gem::Version.new(present_version_str.dup)
27
+ int_avail = Checker.new(gem_name).get_latest
28
+
29
+ if int_avail > int_present
30
30
  destination << "Your version of #{gem_name} is probably out of date\n"
31
- destination << "(the current version is #{latest_version}, but you have #{present_version_str}).\n"
31
+ destination << "(the current version is #{int_avail}, but you have #{present_version_str}).\n"
32
32
  destination << "Please consider updating (run `gem update #{gem_name}`)\n"
33
33
  end
34
34
  end
35
35
 
36
- # For stubbing
37
- def self.open(*any)
38
- super
36
+ class Checker #:nodoc: :all
37
+ GEMCUTTER_URI = "http://rubygems.org/api/v1/versions/%s.xml"
38
+
39
+ def initialize(gem_name)
40
+ @gem = gem_name
41
+ end
42
+
43
+ def get_latest
44
+ gem_versions_url = GEMCUTTER_URI % @gem
45
+ extract_version_from_xml(open(gem_versions_url))
46
+ end
47
+
48
+ private
49
+
50
+ # Stubbable (arrives via open-uri)
51
+ def open(*any)
52
+ super
53
+ end
54
+
55
+ # Citing http://stackoverflow.com/questions/5616933/how-do-you-create-pre-release-gems
56
+ # Prerelease versions will have text tacked onto the version string
57
+ # gem.version = "1.0.0.pre" # convention used by rubygems itself
58
+ # gem.version = "1.0.0.beta"
59
+ # gem.version = "1.0.0.rc1"
60
+ # gem.version = "1.0.0.bacon"
61
+ # Gemcutter actually provides us with a convenience element for this ("prerelease")
62
+ def extract_version_from_xml(io)
63
+ # doc.elements.each("*/section/item")
64
+ detected_versions = []
65
+
66
+ doc = REXML::Document.new(io)
67
+
68
+ # Limit our search to prerelease=false elements versions
69
+ doc.elements.each('//prerelease[text() = "false"]') do | prerelease_element |
70
+ # Gem::Version was known to throw when a frozen string is passed to the constructor, see
71
+ # # https://github.com/rubygems/rubygems/commit/48f1d869510dcd325d6566df7d0147a086905380
72
+ number_str = prerelease_element.parent.elements['number'].text.dup
73
+ detected_versions << Gem::Version.new(number_str)
74
+ end
75
+
76
+ detected_versions.sort.pop
77
+ end
39
78
  end
40
79
 
41
- def self.extract_version_from_xml(io)
42
- doc = REXML::Document.new(io)
43
- version_text = doc.elements["rubygem/version"].text
44
- end
80
+
45
81
  end
@@ -0,0 +1,1843 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <versions type="array">
3
+ <version>
4
+ <authors>David Heinemeier Hansson</authors>
5
+ <built-at type="datetime">2013-03-18T07:00:00Z</built-at>
6
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
7
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
8
+ </description>
9
+ <downloads-count type="integer">7370</downloads-count>
10
+ <number>2.3.18</number>
11
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
12
+ <platform>ruby</platform>
13
+ <prerelease type="boolean">false</prerelease>
14
+ <licenses type="array"/>
15
+ </version>
16
+ <version>
17
+ <authors>David Heinemeier Hansson</authors>
18
+ <built-at type="datetime">2013-03-18T00:00:00Z</built-at>
19
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
20
+ <downloads-count type="integer">65004</downloads-count>
21
+ <number>3.2.13</number>
22
+ <summary>Full-stack web application framework.</summary>
23
+ <platform>ruby</platform>
24
+ <prerelease type="boolean">false</prerelease>
25
+ <licenses type="array"/>
26
+ </version>
27
+ <version>
28
+ <authors>David Heinemeier Hansson</authors>
29
+ <built-at type="datetime">2013-03-18T00:00:00Z</built-at>
30
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
31
+ <downloads-count type="integer">3722</downloads-count>
32
+ <number>3.1.12</number>
33
+ <summary>Full-stack web application framework.</summary>
34
+ <platform>ruby</platform>
35
+ <prerelease type="boolean">false</prerelease>
36
+ <licenses type="array"/>
37
+ </version>
38
+ <version>
39
+ <authors>David Heinemeier Hansson</authors>
40
+ <built-at type="datetime">2013-03-06T00:00:00Z</built-at>
41
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
42
+ <downloads-count type="integer">1936</downloads-count>
43
+ <number>3.2.13.rc2</number>
44
+ <summary>Full-stack web application framework.</summary>
45
+ <platform>ruby</platform>
46
+ <prerelease type="boolean">true</prerelease>
47
+ <licenses type="array"/>
48
+ </version>
49
+ <version>
50
+ <authors>David Heinemeier Hansson</authors>
51
+ <built-at type="datetime">2013-02-27T00:00:00Z</built-at>
52
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
53
+ <downloads-count type="integer">2820</downloads-count>
54
+ <number>3.2.13.rc1</number>
55
+ <summary>Full-stack web application framework.</summary>
56
+ <platform>ruby</platform>
57
+ <prerelease type="boolean">true</prerelease>
58
+ <licenses type="array"/>
59
+ </version>
60
+ <version>
61
+ <authors>David Heinemeier Hansson</authors>
62
+ <built-at type="datetime">2013-02-26T00:00:00Z</built-at>
63
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
64
+ <downloads-count type="integer">15371</downloads-count>
65
+ <number>4.0.0.beta1</number>
66
+ <summary>Full-stack web application framework.</summary>
67
+ <platform>ruby</platform>
68
+ <prerelease type="boolean">true</prerelease>
69
+ <licenses type="array">
70
+ <license>MIT</license>
71
+ </licenses>
72
+ </version>
73
+ <version>
74
+ <authors>David Heinemeier Hansson</authors>
75
+ <built-at type="datetime">2013-02-11T00:00:00Z</built-at>
76
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
77
+ <downloads-count type="integer">564503</downloads-count>
78
+ <number>3.2.12</number>
79
+ <summary>Full-stack web application framework.</summary>
80
+ <platform>ruby</platform>
81
+ <prerelease type="boolean">false</prerelease>
82
+ <licenses type="array"/>
83
+ </version>
84
+ <version>
85
+ <authors>David Heinemeier Hansson</authors>
86
+ <built-at type="datetime">2013-02-11T00:00:00Z</built-at>
87
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
88
+ <downloads-count type="integer">25920</downloads-count>
89
+ <number>3.1.11</number>
90
+ <summary>Full-stack web application framework.</summary>
91
+ <platform>ruby</platform>
92
+ <prerelease type="boolean">false</prerelease>
93
+ <licenses type="array"/>
94
+ </version>
95
+ <version>
96
+ <authors>David Heinemeier Hansson</authors>
97
+ <built-at type="datetime">2013-02-11T00:00:00Z</built-at>
98
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
99
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
100
+ </description>
101
+ <downloads-count type="integer">37974</downloads-count>
102
+ <number>2.3.17</number>
103
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
104
+ <platform>ruby</platform>
105
+ <prerelease type="boolean">false</prerelease>
106
+ <licenses type="array"/>
107
+ </version>
108
+ <version>
109
+ <authors>David Heinemeier Hansson</authors>
110
+ <built-at type="datetime">2013-01-28T00:00:00Z</built-at>
111
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
112
+ <downloads-count type="integer">43911</downloads-count>
113
+ <number>3.0.20</number>
114
+ <summary>Full-stack web application framework.</summary>
115
+ <platform>ruby</platform>
116
+ <prerelease type="boolean">false</prerelease>
117
+ <licenses type="array"/>
118
+ </version>
119
+ <version>
120
+ <authors>David Heinemeier Hansson</authors>
121
+ <built-at type="datetime">2013-01-28T00:00:00Z</built-at>
122
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
123
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
124
+ </description>
125
+ <downloads-count type="integer">27593</downloads-count>
126
+ <number>2.3.16</number>
127
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
128
+ <platform>ruby</platform>
129
+ <prerelease type="boolean">false</prerelease>
130
+ <licenses type="array"/>
131
+ </version>
132
+ <version>
133
+ <authors>David Heinemeier Hansson</authors>
134
+ <built-at type="datetime">2013-01-08T08:00:00Z</built-at>
135
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
136
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
137
+ </description>
138
+ <downloads-count type="integer">49801</downloads-count>
139
+ <number>2.3.15</number>
140
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
141
+ <platform>ruby</platform>
142
+ <prerelease type="boolean">false</prerelease>
143
+ <licenses type="array"/>
144
+ </version>
145
+ <version>
146
+ <authors>David Heinemeier Hansson</authors>
147
+ <built-at type="datetime">2013-01-08T00:00:00Z</built-at>
148
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
149
+ <downloads-count type="integer">812060</downloads-count>
150
+ <number>3.2.11</number>
151
+ <summary>Full-stack web application framework.</summary>
152
+ <platform>ruby</platform>
153
+ <prerelease type="boolean">false</prerelease>
154
+ <licenses type="array"/>
155
+ </version>
156
+ <version>
157
+ <authors>David Heinemeier Hansson</authors>
158
+ <built-at type="datetime">2013-01-08T00:00:00Z</built-at>
159
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
160
+ <downloads-count type="integer">48454</downloads-count>
161
+ <number>3.1.10</number>
162
+ <summary>Full-stack web application framework.</summary>
163
+ <platform>ruby</platform>
164
+ <prerelease type="boolean">false</prerelease>
165
+ <licenses type="array"/>
166
+ </version>
167
+ <version>
168
+ <authors>David Heinemeier Hansson</authors>
169
+ <built-at type="datetime">2013-01-08T00:00:00Z</built-at>
170
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
171
+ <downloads-count type="integer">61379</downloads-count>
172
+ <number>3.0.19</number>
173
+ <summary>Full-stack web application framework.</summary>
174
+ <platform>ruby</platform>
175
+ <prerelease type="boolean">false</prerelease>
176
+ <licenses type="array"/>
177
+ </version>
178
+ <version>
179
+ <authors>David Heinemeier Hansson</authors>
180
+ <built-at type="datetime">2012-12-23T00:00:00Z</built-at>
181
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
182
+ <downloads-count type="integer">102846</downloads-count>
183
+ <number>3.2.10</number>
184
+ <summary>Full-stack web application framework.</summary>
185
+ <platform>ruby</platform>
186
+ <prerelease type="boolean">false</prerelease>
187
+ <licenses type="array"/>
188
+ </version>
189
+ <version>
190
+ <authors>David Heinemeier Hansson</authors>
191
+ <built-at type="datetime">2012-12-23T00:00:00Z</built-at>
192
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
193
+ <downloads-count type="integer">4412</downloads-count>
194
+ <number>3.1.9</number>
195
+ <summary>Full-stack web application framework.</summary>
196
+ <platform>ruby</platform>
197
+ <prerelease type="boolean">false</prerelease>
198
+ <licenses type="array"/>
199
+ </version>
200
+ <version>
201
+ <authors>David Heinemeier Hansson</authors>
202
+ <built-at type="datetime">2012-12-23T00:00:00Z</built-at>
203
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
204
+ <downloads-count type="integer">6601</downloads-count>
205
+ <number>3.0.18</number>
206
+ <summary>Full-stack web application framework.</summary>
207
+ <platform>ruby</platform>
208
+ <prerelease type="boolean">false</prerelease>
209
+ <licenses type="array"/>
210
+ </version>
211
+ <version>
212
+ <authors>David Heinemeier Hansson</authors>
213
+ <built-at type="datetime">2012-11-12T00:00:00Z</built-at>
214
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
215
+ <downloads-count type="integer">592206</downloads-count>
216
+ <number>3.2.9</number>
217
+ <summary>Full-stack web application framework.</summary>
218
+ <platform>ruby</platform>
219
+ <prerelease type="boolean">false</prerelease>
220
+ <licenses nil="true"/>
221
+ </version>
222
+ <version>
223
+ <authors>David Heinemeier Hansson</authors>
224
+ <built-at type="datetime">2012-11-09T00:00:00Z</built-at>
225
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
226
+ <downloads-count type="integer">2813</downloads-count>
227
+ <number>3.2.9.rc3</number>
228
+ <summary>Full-stack web application framework.</summary>
229
+ <platform>ruby</platform>
230
+ <prerelease type="boolean">true</prerelease>
231
+ <licenses nil="true"/>
232
+ </version>
233
+ <version>
234
+ <authors>David Heinemeier Hansson</authors>
235
+ <built-at type="datetime">2012-11-01T00:00:00Z</built-at>
236
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
237
+ <downloads-count type="integer">2284</downloads-count>
238
+ <number>3.2.9.rc2</number>
239
+ <summary>Full-stack web application framework.</summary>
240
+ <platform>ruby</platform>
241
+ <prerelease type="boolean">true</prerelease>
242
+ <licenses nil="true"/>
243
+ </version>
244
+ <version>
245
+ <authors>David Heinemeier Hansson</authors>
246
+ <built-at type="datetime">2012-10-29T00:00:00Z</built-at>
247
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
248
+ <downloads-count type="integer">1043</downloads-count>
249
+ <number>3.2.9.rc1</number>
250
+ <summary>Full-stack web application framework.</summary>
251
+ <platform>ruby</platform>
252
+ <prerelease type="boolean">true</prerelease>
253
+ <licenses nil="true"/>
254
+ </version>
255
+ <version>
256
+ <authors>David Heinemeier Hansson</authors>
257
+ <built-at type="datetime">2012-08-09T00:00:00Z</built-at>
258
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
259
+ <downloads-count type="integer">1184855</downloads-count>
260
+ <number>3.2.8</number>
261
+ <summary>Full-stack web application framework.</summary>
262
+ <platform>ruby</platform>
263
+ <prerelease type="boolean">false</prerelease>
264
+ <licenses nil="true"/>
265
+ </version>
266
+ <version>
267
+ <authors>David Heinemeier Hansson</authors>
268
+ <built-at type="datetime">2012-08-09T00:00:00Z</built-at>
269
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
270
+ <downloads-count type="integer">50160</downloads-count>
271
+ <number>3.1.8</number>
272
+ <summary>Full-stack web application framework.</summary>
273
+ <platform>ruby</platform>
274
+ <prerelease type="boolean">false</prerelease>
275
+ <licenses nil="true"/>
276
+ </version>
277
+ <version>
278
+ <authors>David Heinemeier Hansson</authors>
279
+ <built-at type="datetime">2012-08-09T00:00:00Z</built-at>
280
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
281
+ <downloads-count type="integer">61162</downloads-count>
282
+ <number>3.0.17</number>
283
+ <summary>Full-stack web application framework.</summary>
284
+ <platform>ruby</platform>
285
+ <prerelease type="boolean">false</prerelease>
286
+ <licenses nil="true"/>
287
+ </version>
288
+ <version>
289
+ <authors>David Heinemeier Hansson</authors>
290
+ <built-at type="datetime">2012-08-03T00:00:00Z</built-at>
291
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
292
+ <downloads-count type="integer">3852</downloads-count>
293
+ <number>3.2.8.rc2</number>
294
+ <summary>Full-stack web application framework.</summary>
295
+ <platform>ruby</platform>
296
+ <prerelease type="boolean">true</prerelease>
297
+ <licenses nil="true"/>
298
+ </version>
299
+ <version>
300
+ <authors>David Heinemeier Hansson</authors>
301
+ <built-at type="datetime">2012-08-01T00:00:00Z</built-at>
302
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
303
+ <downloads-count type="integer">710</downloads-count>
304
+ <number>3.2.8.rc1</number>
305
+ <summary>Full-stack web application framework.</summary>
306
+ <platform>ruby</platform>
307
+ <prerelease type="boolean">true</prerelease>
308
+ <licenses nil="true"/>
309
+ </version>
310
+ <version>
311
+ <authors>David Heinemeier Hansson</authors>
312
+ <built-at type="datetime">2012-07-26T00:00:00Z</built-at>
313
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
314
+ <downloads-count type="integer">189451</downloads-count>
315
+ <number>3.2.7</number>
316
+ <summary>Full-stack web application framework.</summary>
317
+ <platform>ruby</platform>
318
+ <prerelease type="boolean">false</prerelease>
319
+ <licenses nil="true"/>
320
+ </version>
321
+ <version>
322
+ <authors>David Heinemeier Hansson</authors>
323
+ <built-at type="datetime">2012-07-26T00:00:00Z</built-at>
324
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
325
+ <downloads-count type="integer">9381</downloads-count>
326
+ <number>3.1.7</number>
327
+ <summary>Full-stack web application framework.</summary>
328
+ <platform>ruby</platform>
329
+ <prerelease type="boolean">false</prerelease>
330
+ <licenses nil="true"/>
331
+ </version>
332
+ <version>
333
+ <authors>David Heinemeier Hansson</authors>
334
+ <built-at type="datetime">2012-07-26T00:00:00Z</built-at>
335
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
336
+ <downloads-count type="integer">11965</downloads-count>
337
+ <number>3.0.16</number>
338
+ <summary>Full-stack web application framework.</summary>
339
+ <platform>ruby</platform>
340
+ <prerelease type="boolean">false</prerelease>
341
+ <licenses nil="true"/>
342
+ </version>
343
+ <version>
344
+ <authors>David Heinemeier Hansson</authors>
345
+ <built-at type="datetime">2012-07-23T00:00:00Z</built-at>
346
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
347
+ <downloads-count type="integer">1050</downloads-count>
348
+ <number>3.2.7.rc1</number>
349
+ <summary>Full-stack web application framework.</summary>
350
+ <platform>ruby</platform>
351
+ <prerelease type="boolean">true</prerelease>
352
+ <licenses nil="true"/>
353
+ </version>
354
+ <version>
355
+ <authors>David Heinemeier Hansson</authors>
356
+ <built-at type="datetime">2012-06-13T00:00:00Z</built-at>
357
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
358
+ <downloads-count type="integer">39619</downloads-count>
359
+ <number>3.0.15</number>
360
+ <summary>Full-stack web application framework.</summary>
361
+ <platform>ruby</platform>
362
+ <prerelease type="boolean">false</prerelease>
363
+ <licenses nil="true"/>
364
+ </version>
365
+ <version>
366
+ <authors>David Heinemeier Hansson</authors>
367
+ <built-at type="datetime">2012-06-12T00:00:00Z</built-at>
368
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
369
+ <downloads-count type="integer">634406</downloads-count>
370
+ <number>3.2.6</number>
371
+ <summary>Full-stack web application framework.</summary>
372
+ <platform>ruby</platform>
373
+ <prerelease type="boolean">false</prerelease>
374
+ <licenses nil="true"/>
375
+ </version>
376
+ <version>
377
+ <authors>David Heinemeier Hansson</authors>
378
+ <built-at type="datetime">2012-06-12T00:00:00Z</built-at>
379
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
380
+ <downloads-count type="integer">32204</downloads-count>
381
+ <number>3.1.6</number>
382
+ <summary>Full-stack web application framework.</summary>
383
+ <platform>ruby</platform>
384
+ <prerelease type="boolean">false</prerelease>
385
+ <licenses nil="true"/>
386
+ </version>
387
+ <version>
388
+ <authors>David Heinemeier Hansson</authors>
389
+ <built-at type="datetime">2012-06-12T00:00:00Z</built-at>
390
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
391
+ <downloads-count type="integer">30025</downloads-count>
392
+ <number>3.0.14</number>
393
+ <summary>Full-stack web application framework.</summary>
394
+ <platform>ruby</platform>
395
+ <prerelease type="boolean">false</prerelease>
396
+ <licenses nil="true"/>
397
+ </version>
398
+ <version>
399
+ <authors>David Heinemeier Hansson</authors>
400
+ <built-at type="datetime">2012-06-01T00:00:00Z</built-at>
401
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
402
+ <downloads-count type="integer">168604</downloads-count>
403
+ <number>3.2.5</number>
404
+ <summary>Full-stack web application framework.</summary>
405
+ <platform>ruby</platform>
406
+ <prerelease type="boolean">false</prerelease>
407
+ <licenses nil="true"/>
408
+ </version>
409
+ <version>
410
+ <authors>David Heinemeier Hansson</authors>
411
+ <built-at type="datetime">2012-05-31T00:00:00Z</built-at>
412
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
413
+ <downloads-count type="integer">9128</downloads-count>
414
+ <number>3.2.4</number>
415
+ <summary>Full-stack web application framework.</summary>
416
+ <platform>ruby</platform>
417
+ <prerelease type="boolean">false</prerelease>
418
+ <licenses nil="true"/>
419
+ </version>
420
+ <version>
421
+ <authors>David Heinemeier Hansson</authors>
422
+ <built-at type="datetime">2012-05-31T00:00:00Z</built-at>
423
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
424
+ <downloads-count type="integer">10941</downloads-count>
425
+ <number>3.1.5</number>
426
+ <summary>Full-stack web application framework.</summary>
427
+ <platform>ruby</platform>
428
+ <prerelease type="boolean">false</prerelease>
429
+ <licenses nil="true"/>
430
+ </version>
431
+ <version>
432
+ <authors>David Heinemeier Hansson</authors>
433
+ <built-at type="datetime">2012-05-31T00:00:00Z</built-at>
434
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
435
+ <downloads-count type="integer">26987</downloads-count>
436
+ <number>3.0.13</number>
437
+ <summary>Full-stack web application framework.</summary>
438
+ <platform>ruby</platform>
439
+ <prerelease type="boolean">false</prerelease>
440
+ <licenses nil="true"/>
441
+ </version>
442
+ <version>
443
+ <authors>David Heinemeier Hansson</authors>
444
+ <built-at type="datetime">2012-05-28T00:00:00Z</built-at>
445
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
446
+ <downloads-count type="integer">2382</downloads-count>
447
+ <number>3.2.4.rc1</number>
448
+ <summary>Full-stack web application framework.</summary>
449
+ <platform>ruby</platform>
450
+ <prerelease type="boolean">true</prerelease>
451
+ <licenses nil="true"/>
452
+ </version>
453
+ <version>
454
+ <authors>David Heinemeier Hansson</authors>
455
+ <built-at type="datetime">2012-05-28T00:00:00Z</built-at>
456
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
457
+ <downloads-count type="integer">762</downloads-count>
458
+ <number>3.1.5.rc1</number>
459
+ <summary>Full-stack web application framework.</summary>
460
+ <platform>ruby</platform>
461
+ <prerelease type="boolean">true</prerelease>
462
+ <licenses nil="true"/>
463
+ </version>
464
+ <version>
465
+ <authors>David Heinemeier Hansson</authors>
466
+ <built-at type="datetime">2012-05-28T00:00:00Z</built-at>
467
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
468
+ <downloads-count type="integer">275</downloads-count>
469
+ <number>3.0.13.rc1</number>
470
+ <summary>Full-stack web application framework.</summary>
471
+ <platform>ruby</platform>
472
+ <prerelease type="boolean">true</prerelease>
473
+ <licenses nil="true"/>
474
+ </version>
475
+ <version>
476
+ <authors>David Heinemeier Hansson</authors>
477
+ <built-at type="datetime">2012-03-30T03:00:00Z</built-at>
478
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
479
+ <downloads-count type="integer">706394</downloads-count>
480
+ <number>3.2.3</number>
481
+ <summary>Full-stack web application framework.</summary>
482
+ <platform>ruby</platform>
483
+ <prerelease type="boolean">false</prerelease>
484
+ <licenses nil="true"/>
485
+ </version>
486
+ <version>
487
+ <authors>David Heinemeier Hansson</authors>
488
+ <built-at type="datetime">2012-03-29T03:00:00Z</built-at>
489
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
490
+ <downloads-count type="integer">2413</downloads-count>
491
+ <number>3.2.3.rc2</number>
492
+ <summary>Full-stack web application framework.</summary>
493
+ <platform>ruby</platform>
494
+ <prerelease type="boolean">true</prerelease>
495
+ <licenses nil="true"/>
496
+ </version>
497
+ <version>
498
+ <authors>David Heinemeier Hansson</authors>
499
+ <built-at type="datetime">2012-03-27T03:00:00Z</built-at>
500
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
501
+ <downloads-count type="integer">866</downloads-count>
502
+ <number>3.2.3.rc1</number>
503
+ <summary>Full-stack web application framework.</summary>
504
+ <platform>ruby</platform>
505
+ <prerelease type="boolean">true</prerelease>
506
+ <licenses nil="true"/>
507
+ </version>
508
+ <version>
509
+ <authors>David Heinemeier Hansson</authors>
510
+ <built-at type="datetime">2012-03-01T00:00:00Z</built-at>
511
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
512
+ <downloads-count type="integer">382771</downloads-count>
513
+ <number>3.2.2</number>
514
+ <summary>Full-stack web application framework.</summary>
515
+ <platform>ruby</platform>
516
+ <prerelease type="boolean">false</prerelease>
517
+ <licenses nil="true"/>
518
+ </version>
519
+ <version>
520
+ <authors>David Heinemeier Hansson</authors>
521
+ <built-at type="datetime">2012-03-01T00:00:00Z</built-at>
522
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
523
+ <downloads-count type="integer">77293</downloads-count>
524
+ <number>3.1.4</number>
525
+ <summary>Full-stack web application framework.</summary>
526
+ <platform>ruby</platform>
527
+ <prerelease type="boolean">false</prerelease>
528
+ <licenses nil="true"/>
529
+ </version>
530
+ <version>
531
+ <authors>David Heinemeier Hansson</authors>
532
+ <built-at type="datetime">2012-03-01T00:00:00Z</built-at>
533
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
534
+ <downloads-count type="integer">54697</downloads-count>
535
+ <number>3.0.12</number>
536
+ <summary>Full-stack web application framework.</summary>
537
+ <platform>ruby</platform>
538
+ <prerelease type="boolean">false</prerelease>
539
+ <licenses nil="true"/>
540
+ </version>
541
+ <version>
542
+ <authors>David Heinemeier Hansson</authors>
543
+ <built-at type="datetime">2012-02-22T00:00:00Z</built-at>
544
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
545
+ <downloads-count type="integer">3930</downloads-count>
546
+ <number>3.2.2.rc1</number>
547
+ <summary>Full-stack web application framework.</summary>
548
+ <platform>ruby</platform>
549
+ <prerelease type="boolean">true</prerelease>
550
+ <licenses nil="true"/>
551
+ </version>
552
+ <version>
553
+ <authors>David Heinemeier Hansson</authors>
554
+ <built-at type="datetime">2012-02-22T00:00:00Z</built-at>
555
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
556
+ <downloads-count type="integer">648</downloads-count>
557
+ <number>3.1.4.rc1</number>
558
+ <summary>Full-stack web application framework.</summary>
559
+ <platform>ruby</platform>
560
+ <prerelease type="boolean">true</prerelease>
561
+ <licenses nil="true"/>
562
+ </version>
563
+ <version>
564
+ <authors>David Heinemeier Hansson</authors>
565
+ <built-at type="datetime">2012-02-22T00:00:00Z</built-at>
566
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
567
+ <downloads-count type="integer">294</downloads-count>
568
+ <number>3.0.12.rc1</number>
569
+ <summary>Full-stack web application framework.</summary>
570
+ <platform>ruby</platform>
571
+ <prerelease type="boolean">true</prerelease>
572
+ <licenses nil="true"/>
573
+ </version>
574
+ <version>
575
+ <authors>David Heinemeier Hansson</authors>
576
+ <built-at type="datetime">2012-01-26T08:00:00Z</built-at>
577
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
578
+ <downloads-count type="integer">437622</downloads-count>
579
+ <number>3.2.1</number>
580
+ <summary>Full-stack web application framework.</summary>
581
+ <platform>ruby</platform>
582
+ <prerelease type="boolean">false</prerelease>
583
+ <licenses nil="true"/>
584
+ </version>
585
+ <version>
586
+ <authors>David Heinemeier Hansson</authors>
587
+ <built-at type="datetime">2012-01-20T00:00:00Z</built-at>
588
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
589
+ <downloads-count type="integer">135727</downloads-count>
590
+ <number>3.2.0</number>
591
+ <summary>Full-stack web application framework.</summary>
592
+ <platform>ruby</platform>
593
+ <prerelease type="boolean">false</prerelease>
594
+ <licenses nil="true"/>
595
+ </version>
596
+ <version>
597
+ <authors>David Heinemeier Hansson</authors>
598
+ <built-at type="datetime">2012-01-04T02:00:00Z</built-at>
599
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
600
+ <downloads-count type="integer">11725</downloads-count>
601
+ <number>3.2.0.rc2</number>
602
+ <summary>Full-stack web application framework.</summary>
603
+ <platform>ruby</platform>
604
+ <prerelease type="boolean">true</prerelease>
605
+ <licenses nil="true"/>
606
+ </version>
607
+ <version>
608
+ <authors>David Heinemeier Hansson</authors>
609
+ <built-at type="datetime">2011-12-20T00:00:00Z</built-at>
610
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
611
+ <downloads-count type="integer">8132</downloads-count>
612
+ <number>3.2.0.rc1</number>
613
+ <summary>Full-stack web application framework.</summary>
614
+ <platform>ruby</platform>
615
+ <prerelease type="boolean">true</prerelease>
616
+ <licenses nil="true"/>
617
+ </version>
618
+ <version>
619
+ <authors>David Heinemeier Hansson</authors>
620
+ <built-at type="datetime">2011-11-20T00:00:00Z</built-at>
621
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
622
+ <downloads-count type="integer">617892</downloads-count>
623
+ <number>3.1.3</number>
624
+ <summary>Full-stack web application framework.</summary>
625
+ <platform>ruby</platform>
626
+ <prerelease type="boolean">false</prerelease>
627
+ <licenses nil="true"/>
628
+ </version>
629
+ <version>
630
+ <authors>David Heinemeier Hansson</authors>
631
+ <built-at type="datetime">2011-11-18T00:00:00Z</built-at>
632
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
633
+ <downloads-count type="integer">37952</downloads-count>
634
+ <number>3.1.2</number>
635
+ <summary>Full-stack web application framework.</summary>
636
+ <platform>ruby</platform>
637
+ <prerelease type="boolean">false</prerelease>
638
+ <licenses nil="true"/>
639
+ </version>
640
+ <version>
641
+ <authors>David Heinemeier Hansson</authors>
642
+ <built-at type="datetime">2011-11-18T00:00:00Z</built-at>
643
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
644
+ <downloads-count type="integer">126203</downloads-count>
645
+ <number>3.0.11</number>
646
+ <summary>Full-stack web application framework.</summary>
647
+ <platform>ruby</platform>
648
+ <prerelease type="boolean">false</prerelease>
649
+ <licenses nil="true"/>
650
+ </version>
651
+ <version>
652
+ <authors>David Heinemeier Hansson</authors>
653
+ <built-at type="datetime">2011-11-14T00:00:00Z</built-at>
654
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
655
+ <downloads-count type="integer">2321</downloads-count>
656
+ <number>3.1.2.rc2</number>
657
+ <summary>Full-stack web application framework.</summary>
658
+ <platform>ruby</platform>
659
+ <prerelease type="boolean">true</prerelease>
660
+ <licenses nil="true"/>
661
+ </version>
662
+ <version>
663
+ <authors>David Heinemeier Hansson</authors>
664
+ <built-at type="datetime">2011-11-14T00:00:00Z</built-at>
665
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
666
+ <downloads-count type="integer">277</downloads-count>
667
+ <number>3.1.2.rc1</number>
668
+ <summary>Full-stack web application framework.</summary>
669
+ <platform>ruby</platform>
670
+ <prerelease type="boolean">true</prerelease>
671
+ <licenses nil="true"/>
672
+ </version>
673
+ <version>
674
+ <authors>David Heinemeier Hansson</authors>
675
+ <built-at type="datetime">2011-10-07T02:00:00Z</built-at>
676
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
677
+ <downloads-count type="integer">537254</downloads-count>
678
+ <number>3.1.1</number>
679
+ <summary>Full-stack web application framework.</summary>
680
+ <platform>ruby</platform>
681
+ <prerelease type="boolean">false</prerelease>
682
+ <licenses nil="true"/>
683
+ </version>
684
+ <version>
685
+ <authors>David Heinemeier Hansson</authors>
686
+ <built-at type="datetime">2011-10-05T02:00:00Z</built-at>
687
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
688
+ <downloads-count type="integer">3779</downloads-count>
689
+ <number>3.1.1.rc3</number>
690
+ <summary>Full-stack web application framework.</summary>
691
+ <platform>ruby</platform>
692
+ <prerelease type="boolean">true</prerelease>
693
+ <licenses nil="true"/>
694
+ </version>
695
+ <version>
696
+ <authors>David Heinemeier Hansson</authors>
697
+ <built-at type="datetime">2011-09-29T03:00:00Z</built-at>
698
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
699
+ <downloads-count type="integer">5856</downloads-count>
700
+ <number>3.1.1.rc2</number>
701
+ <summary>Full-stack web application framework.</summary>
702
+ <platform>ruby</platform>
703
+ <prerelease type="boolean">true</prerelease>
704
+ <licenses nil="true"/>
705
+ </version>
706
+ <version>
707
+ <authors>David Heinemeier Hansson</authors>
708
+ <built-at type="datetime">2011-09-14T07:00:00Z</built-at>
709
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
710
+ <downloads-count type="integer">9647</downloads-count>
711
+ <number>3.1.1.rc1</number>
712
+ <summary>Full-stack web application framework.</summary>
713
+ <platform>ruby</platform>
714
+ <prerelease type="boolean">true</prerelease>
715
+ <licenses nil="true"/>
716
+ </version>
717
+ <version>
718
+ <authors>David Heinemeier Hansson</authors>
719
+ <built-at type="datetime">2011-08-31T00:00:00Z</built-at>
720
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
721
+ <downloads-count type="integer">576538</downloads-count>
722
+ <number>3.1.0</number>
723
+ <summary>Full-stack web application framework.</summary>
724
+ <platform>ruby</platform>
725
+ <prerelease type="boolean">false</prerelease>
726
+ <licenses nil="true"/>
727
+ </version>
728
+ <version>
729
+ <authors>David Heinemeier Hansson</authors>
730
+ <built-at type="datetime">2011-08-29T03:00:00Z</built-at>
731
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
732
+ <downloads-count type="integer">12244</downloads-count>
733
+ <number>3.1.0.rc8</number>
734
+ <summary>Full-stack web application framework.</summary>
735
+ <platform>ruby</platform>
736
+ <prerelease type="boolean">true</prerelease>
737
+ <licenses nil="true"/>
738
+ </version>
739
+ <version>
740
+ <authors>David Heinemeier Hansson</authors>
741
+ <built-at type="datetime">2011-08-16T00:00:00Z</built-at>
742
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
743
+ <downloads-count type="integer">22910</downloads-count>
744
+ <number>3.1.0.rc6</number>
745
+ <summary>Full-stack web application framework.</summary>
746
+ <platform>ruby</platform>
747
+ <prerelease type="boolean">true</prerelease>
748
+ <licenses nil="true"/>
749
+ </version>
750
+ <version>
751
+ <authors>David Heinemeier Hansson</authors>
752
+ <built-at type="datetime">2011-08-16T00:00:00Z</built-at>
753
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
754
+ <downloads-count type="integer">420029</downloads-count>
755
+ <number>3.0.10</number>
756
+ <summary>Full-stack web application framework.</summary>
757
+ <platform>ruby</platform>
758
+ <prerelease type="boolean">false</prerelease>
759
+ <licenses nil="true"/>
760
+ </version>
761
+ <version>
762
+ <authors>David Heinemeier Hansson</authors>
763
+ <built-at type="datetime">2011-08-16T00:00:00Z</built-at>
764
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
765
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
766
+ </description>
767
+ <downloads-count type="integer">357726</downloads-count>
768
+ <number>2.3.14</number>
769
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
770
+ <platform>ruby</platform>
771
+ <prerelease type="boolean">false</prerelease>
772
+ <licenses nil="true"/>
773
+ </version>
774
+ <version>
775
+ <authors>David Heinemeier Hansson</authors>
776
+ <built-at type="datetime">2011-08-04T07:00:00Z</built-at>
777
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
778
+ <downloads-count type="integer">691</downloads-count>
779
+ <number>3.0.10.rc1</number>
780
+ <summary>Full-stack web application framework.</summary>
781
+ <platform>ruby</platform>
782
+ <prerelease type="boolean">true</prerelease>
783
+ <licenses nil="true"/>
784
+ </version>
785
+ <version>
786
+ <authors>David Heinemeier Hansson</authors>
787
+ <built-at type="datetime">2011-07-25T07:00:00Z</built-at>
788
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
789
+ <downloads-count type="integer">43424</downloads-count>
790
+ <number>3.1.0.rc5</number>
791
+ <summary>Full-stack web application framework.</summary>
792
+ <platform>ruby</platform>
793
+ <prerelease type="boolean">true</prerelease>
794
+ <licenses nil="true"/>
795
+ </version>
796
+ <version>
797
+ <authors>David Heinemeier Hansson</authors>
798
+ <built-at type="datetime">2011-06-16T00:00:00Z</built-at>
799
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
800
+ <downloads-count type="integer">579128</downloads-count>
801
+ <number>3.0.9</number>
802
+ <summary>Full-stack web application framework.</summary>
803
+ <platform>ruby</platform>
804
+ <prerelease type="boolean">false</prerelease>
805
+ <licenses nil="true"/>
806
+ </version>
807
+ <version>
808
+ <authors>David Heinemeier Hansson</authors>
809
+ <built-at type="datetime">2011-06-12T00:00:00Z</built-at>
810
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
811
+ <downloads-count type="integer">1457</downloads-count>
812
+ <number>3.0.9.rc5</number>
813
+ <summary>Full-stack web application framework.</summary>
814
+ <platform>ruby</platform>
815
+ <prerelease type="boolean">true</prerelease>
816
+ <licenses nil="true"/>
817
+ </version>
818
+ <version>
819
+ <authors>David Heinemeier Hansson</authors>
820
+ <built-at type="datetime">2011-06-12T00:00:00Z</built-at>
821
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
822
+ <downloads-count type="integer">272</downloads-count>
823
+ <number>3.0.9.rc4</number>
824
+ <summary>Full-stack web application framework.</summary>
825
+ <platform>ruby</platform>
826
+ <prerelease type="boolean">true</prerelease>
827
+ <licenses nil="true"/>
828
+ </version>
829
+ <version>
830
+ <authors>David Heinemeier Hansson</authors>
831
+ <built-at type="datetime">2011-06-09T00:00:00Z</built-at>
832
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
833
+ <downloads-count type="integer">55213</downloads-count>
834
+ <number>3.1.0.rc4</number>
835
+ <summary>Full-stack web application framework.</summary>
836
+ <platform>ruby</platform>
837
+ <prerelease type="boolean">true</prerelease>
838
+ <licenses nil="true"/>
839
+ </version>
840
+ <version>
841
+ <authors>David Heinemeier Hansson</authors>
842
+ <built-at type="datetime">2011-06-09T00:00:00Z</built-at>
843
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
844
+ <downloads-count type="integer">772</downloads-count>
845
+ <number>3.0.9.rc3</number>
846
+ <summary>Full-stack web application framework.</summary>
847
+ <platform>ruby</platform>
848
+ <prerelease type="boolean">true</prerelease>
849
+ <licenses nil="true"/>
850
+ </version>
851
+ <version>
852
+ <authors>David Heinemeier Hansson</authors>
853
+ <built-at type="datetime">2011-06-08T00:00:00Z</built-at>
854
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
855
+ <downloads-count type="integer">3398</downloads-count>
856
+ <number>3.1.0.rc3</number>
857
+ <summary>Full-stack web application framework.</summary>
858
+ <platform>ruby</platform>
859
+ <prerelease type="boolean">true</prerelease>
860
+ <licenses nil="true"/>
861
+ </version>
862
+ <version>
863
+ <authors>David Heinemeier Hansson</authors>
864
+ <built-at type="datetime">2011-06-08T00:00:00Z</built-at>
865
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
866
+ <downloads-count type="integer">407</downloads-count>
867
+ <number>3.0.9.rc1</number>
868
+ <summary>Full-stack web application framework.</summary>
869
+ <platform>ruby</platform>
870
+ <prerelease type="boolean">true</prerelease>
871
+ <licenses nil="true"/>
872
+ </version>
873
+ <version>
874
+ <authors>David Heinemeier Hansson</authors>
875
+ <built-at type="datetime">2011-06-08T00:00:00Z</built-at>
876
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
877
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
878
+ </description>
879
+ <downloads-count type="integer">51185</downloads-count>
880
+ <number>2.3.12</number>
881
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
882
+ <platform>ruby</platform>
883
+ <prerelease type="boolean">false</prerelease>
884
+ <licenses nil="true"/>
885
+ </version>
886
+ <version>
887
+ <authors>David Heinemeier Hansson</authors>
888
+ <built-at type="datetime">2011-06-07T00:00:00Z</built-at>
889
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
890
+ <downloads-count type="integer">2161</downloads-count>
891
+ <number>3.1.0.rc2</number>
892
+ <summary>Full-stack web application framework.</summary>
893
+ <platform>ruby</platform>
894
+ <prerelease type="boolean">true</prerelease>
895
+ <licenses nil="true"/>
896
+ </version>
897
+ <version>
898
+ <authors>David Heinemeier Hansson</authors>
899
+ <built-at type="datetime">2011-06-07T00:00:00Z</built-at>
900
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
901
+ <downloads-count type="integer">72053</downloads-count>
902
+ <number>3.0.8</number>
903
+ <summary>Full-stack web application framework.</summary>
904
+ <platform>ruby</platform>
905
+ <prerelease type="boolean">false</prerelease>
906
+ <licenses nil="true"/>
907
+ </version>
908
+ <version>
909
+ <authors>David Heinemeier Hansson</authors>
910
+ <built-at type="datetime">2011-05-31T00:00:00Z</built-at>
911
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
912
+ <downloads-count type="integer">1124</downloads-count>
913
+ <number>3.0.8.rc4</number>
914
+ <summary>Full-stack web application framework.</summary>
915
+ <platform>ruby</platform>
916
+ <prerelease type="boolean">true</prerelease>
917
+ <licenses nil="true"/>
918
+ </version>
919
+ <version>
920
+ <authors>David Heinemeier Hansson</authors>
921
+ <built-at type="datetime">2011-05-27T00:00:00Z</built-at>
922
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
923
+ <downloads-count type="integer">1574</downloads-count>
924
+ <number>3.0.8.rc2</number>
925
+ <summary>Full-stack web application framework.</summary>
926
+ <platform>ruby</platform>
927
+ <prerelease type="boolean">true</prerelease>
928
+ <licenses nil="true"/>
929
+ </version>
930
+ <version>
931
+ <authors>David Heinemeier Hansson</authors>
932
+ <built-at type="datetime">2011-05-25T00:00:00Z</built-at>
933
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
934
+ <downloads-count type="integer">871</downloads-count>
935
+ <number>3.0.8.rc1</number>
936
+ <summary>Full-stack web application framework.</summary>
937
+ <platform>ruby</platform>
938
+ <prerelease type="boolean">true</prerelease>
939
+ <licenses nil="true"/>
940
+ </version>
941
+ <version>
942
+ <authors>David Heinemeier Hansson</authors>
943
+ <built-at type="datetime">2011-05-21T05:00:00Z</built-at>
944
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
945
+ <downloads-count type="integer">22127</downloads-count>
946
+ <number>3.1.0.rc1</number>
947
+ <summary>Full-stack web application framework.</summary>
948
+ <platform>ruby</platform>
949
+ <prerelease type="boolean">true</prerelease>
950
+ <licenses nil="true"/>
951
+ </version>
952
+ <version>
953
+ <authors>David Heinemeier Hansson</authors>
954
+ <built-at type="datetime">2011-05-04T05:00:00Z</built-at>
955
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
956
+ <downloads-count type="integer">9733</downloads-count>
957
+ <number>3.1.0.beta1</number>
958
+ <summary>Full-stack web application framework.</summary>
959
+ <platform>ruby</platform>
960
+ <prerelease type="boolean">true</prerelease>
961
+ <licenses nil="true"/>
962
+ </version>
963
+ <version>
964
+ <authors>David Heinemeier Hansson</authors>
965
+ <built-at type="datetime">2011-04-18T00:00:00Z</built-at>
966
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
967
+ <downloads-count type="integer">531580</downloads-count>
968
+ <number>3.0.7</number>
969
+ <summary>Full-stack web application framework.</summary>
970
+ <platform>ruby</platform>
971
+ <prerelease type="boolean">false</prerelease>
972
+ <licenses nil="true"/>
973
+ </version>
974
+ <version>
975
+ <authors>David Heinemeier Hansson</authors>
976
+ <built-at type="datetime">2011-04-15T03:00:00Z</built-at>
977
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
978
+ <downloads-count type="integer">2260</downloads-count>
979
+ <number>3.0.7.rc2</number>
980
+ <summary>Full-stack web application framework.</summary>
981
+ <platform>ruby</platform>
982
+ <prerelease type="boolean">true</prerelease>
983
+ <licenses nil="true"/>
984
+ </version>
985
+ <version>
986
+ <authors>David Heinemeier Hansson</authors>
987
+ <built-at type="datetime">2011-04-14T03:00:00Z</built-at>
988
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
989
+ <downloads-count type="integer">764</downloads-count>
990
+ <number>3.0.7.rc1</number>
991
+ <summary>Full-stack web application framework.</summary>
992
+ <platform>ruby</platform>
993
+ <prerelease type="boolean">true</prerelease>
994
+ <licenses nil="true"/>
995
+ </version>
996
+ <version>
997
+ <authors>David Heinemeier Hansson</authors>
998
+ <built-at type="datetime">2011-04-05T07:00:00Z</built-at>
999
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1000
+ <downloads-count type="integer">157886</downloads-count>
1001
+ <number>3.0.6</number>
1002
+ <summary>Full-stack web application framework.</summary>
1003
+ <platform>ruby</platform>
1004
+ <prerelease type="boolean">false</prerelease>
1005
+ <licenses nil="true"/>
1006
+ </version>
1007
+ <version>
1008
+ <authors>David Heinemeier Hansson</authors>
1009
+ <built-at type="datetime">2011-03-30T07:00:00Z</built-at>
1010
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1011
+ <downloads-count type="integer">1481</downloads-count>
1012
+ <number>3.0.6.rc2</number>
1013
+ <summary>Full-stack web application framework.</summary>
1014
+ <platform>ruby</platform>
1015
+ <prerelease type="boolean">true</prerelease>
1016
+ <licenses nil="true"/>
1017
+ </version>
1018
+ <version>
1019
+ <authors>David Heinemeier Hansson</authors>
1020
+ <built-at type="datetime">2011-03-29T07:00:00Z</built-at>
1021
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1022
+ <downloads-count type="integer">813</downloads-count>
1023
+ <number>3.0.6.rc1</number>
1024
+ <summary>Full-stack web application framework.</summary>
1025
+ <platform>ruby</platform>
1026
+ <prerelease type="boolean">true</prerelease>
1027
+ <licenses nil="true"/>
1028
+ </version>
1029
+ <version>
1030
+ <authors>David Heinemeier Hansson</authors>
1031
+ <built-at type="datetime">2011-02-26T08:00:00Z</built-at>
1032
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1033
+ <downloads-count type="integer">388790</downloads-count>
1034
+ <number>3.0.5</number>
1035
+ <summary>Full-stack web application framework.</summary>
1036
+ <platform>ruby</platform>
1037
+ <prerelease type="boolean">false</prerelease>
1038
+ <licenses nil="true"/>
1039
+ </version>
1040
+ <version>
1041
+ <authors>David Heinemeier Hansson</authors>
1042
+ <built-at type="datetime">2011-02-22T08:00:00Z</built-at>
1043
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1044
+ <downloads-count type="integer">2887</downloads-count>
1045
+ <number>3.0.5.rc1</number>
1046
+ <summary>Full-stack web application framework.</summary>
1047
+ <platform>ruby</platform>
1048
+ <prerelease type="boolean">true</prerelease>
1049
+ <licenses nil="true"/>
1050
+ </version>
1051
+ <version>
1052
+ <authors>David Heinemeier Hansson</authors>
1053
+ <built-at type="datetime">2011-02-08T11:00:00Z</built-at>
1054
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1055
+ <downloads-count type="integer">218911</downloads-count>
1056
+ <number>3.0.4</number>
1057
+ <summary>Full-stack web application framework.</summary>
1058
+ <platform>ruby</platform>
1059
+ <prerelease type="boolean">false</prerelease>
1060
+ <licenses nil="true"/>
1061
+ </version>
1062
+ <version>
1063
+ <authors>David Heinemeier Hansson</authors>
1064
+ <built-at type="datetime">2011-02-08T11:00:00Z</built-at>
1065
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1066
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1067
+ </description>
1068
+ <downloads-count type="integer">297464</downloads-count>
1069
+ <number>2.3.11</number>
1070
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1071
+ <platform>ruby</platform>
1072
+ <prerelease type="boolean">false</prerelease>
1073
+ <licenses nil="true"/>
1074
+ </version>
1075
+ <version>
1076
+ <authors>David Heinemeier Hansson</authors>
1077
+ <built-at type="datetime">2011-01-30T11:00:00Z</built-at>
1078
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1079
+ <downloads-count type="integer">3167</downloads-count>
1080
+ <number>3.0.4.rc1</number>
1081
+ <summary>Full-stack web application framework.</summary>
1082
+ <platform>ruby</platform>
1083
+ <prerelease type="boolean">true</prerelease>
1084
+ <licenses nil="true"/>
1085
+ </version>
1086
+ <version>
1087
+ <authors>David Heinemeier Hansson</authors>
1088
+ <built-at type="datetime">2010-11-16T06:00:00Z</built-at>
1089
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1090
+ <downloads-count type="integer">891220</downloads-count>
1091
+ <number>3.0.3</number>
1092
+ <summary>Full-stack web application framework.</summary>
1093
+ <platform>ruby</platform>
1094
+ <prerelease type="boolean">false</prerelease>
1095
+ <licenses nil="true"/>
1096
+ </version>
1097
+ <version>
1098
+ <authors>David Heinemeier Hansson</authors>
1099
+ <built-at type="datetime">2010-11-15T06:00:00Z</built-at>
1100
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1101
+ <downloads-count type="integer">12636</downloads-count>
1102
+ <number>3.0.2</number>
1103
+ <summary>Full-stack web application framework.</summary>
1104
+ <platform>ruby</platform>
1105
+ <prerelease type="boolean">false</prerelease>
1106
+ <licenses nil="true"/>
1107
+ </version>
1108
+ <version>
1109
+ <authors>David Heinemeier Hansson</authors>
1110
+ <built-at type="datetime">2010-10-14T11:00:00Z</built-at>
1111
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1112
+ <downloads-count type="integer">269974</downloads-count>
1113
+ <number>3.0.1</number>
1114
+ <summary>Full-stack web application framework.</summary>
1115
+ <platform>ruby</platform>
1116
+ <prerelease type="boolean">false</prerelease>
1117
+ <licenses nil="true"/>
1118
+ </version>
1119
+ <version>
1120
+ <authors>David Heinemeier Hansson</authors>
1121
+ <built-at type="datetime">2010-10-14T11:00:00Z</built-at>
1122
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1123
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1124
+ </description>
1125
+ <downloads-count type="integer">156743</downloads-count>
1126
+ <number>2.3.10</number>
1127
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1128
+ <platform>ruby</platform>
1129
+ <prerelease type="boolean">false</prerelease>
1130
+ <licenses nil="true"/>
1131
+ </version>
1132
+ <version>
1133
+ <authors>David Heinemeier Hansson</authors>
1134
+ <built-at type="datetime">2010-09-04T07:00:00Z</built-at>
1135
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1136
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1137
+ </description>
1138
+ <downloads-count type="integer">67819</downloads-count>
1139
+ <number>2.3.9</number>
1140
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1141
+ <platform>ruby</platform>
1142
+ <prerelease type="boolean">false</prerelease>
1143
+ <licenses nil="true"/>
1144
+ </version>
1145
+ <version>
1146
+ <authors>David Heinemeier Hansson</authors>
1147
+ <built-at type="datetime">2010-08-29T07:00:00Z</built-at>
1148
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1149
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1150
+ </description>
1151
+ <downloads-count type="integer">628</downloads-count>
1152
+ <number>2.3.9.pre</number>
1153
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1154
+ <platform>ruby</platform>
1155
+ <prerelease type="boolean">true</prerelease>
1156
+ <licenses nil="true"/>
1157
+ </version>
1158
+ <version>
1159
+ <authors>David Heinemeier Hansson</authors>
1160
+ <built-at type="datetime">2010-08-29T05:00:00Z</built-at>
1161
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1162
+ <downloads-count type="integer">413872</downloads-count>
1163
+ <number>3.0.0</number>
1164
+ <summary>Full-stack web application framework.</summary>
1165
+ <platform>ruby</platform>
1166
+ <prerelease type="boolean">false</prerelease>
1167
+ <licenses nil="true"/>
1168
+ </version>
1169
+ <version>
1170
+ <authors>David Heinemeier Hansson</authors>
1171
+ <built-at type="datetime">2010-08-23T05:00:00Z</built-at>
1172
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1173
+ <downloads-count type="integer">25952</downloads-count>
1174
+ <number>3.0.0.rc2</number>
1175
+ <summary>Full-stack web application framework.</summary>
1176
+ <platform>ruby</platform>
1177
+ <prerelease type="boolean">true</prerelease>
1178
+ <licenses nil="true"/>
1179
+ </version>
1180
+ <version>
1181
+ <authors>David Heinemeier Hansson</authors>
1182
+ <built-at type="datetime">2010-07-26T05:00:00Z</built-at>
1183
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1184
+ <downloads-count type="integer">58524</downloads-count>
1185
+ <number>3.0.0.rc</number>
1186
+ <summary>Full-stack web application framework.</summary>
1187
+ <platform>ruby</platform>
1188
+ <prerelease type="boolean">true</prerelease>
1189
+ <licenses nil="true"/>
1190
+ </version>
1191
+ <version>
1192
+ <authors>David Heinemeier Hansson</authors>
1193
+ <built-at type="datetime">2010-06-08T04:00:00Z</built-at>
1194
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1195
+ <downloads-count type="integer">53337</downloads-count>
1196
+ <number>3.0.0.beta4</number>
1197
+ <summary>Full-stack web application framework.</summary>
1198
+ <platform>ruby</platform>
1199
+ <prerelease type="boolean">true</prerelease>
1200
+ <licenses nil="true"/>
1201
+ </version>
1202
+ <version>
1203
+ <authors>David Heinemeier Hansson</authors>
1204
+ <built-at type="datetime">2010-05-24T07:00:00Z</built-at>
1205
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1206
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1207
+ </description>
1208
+ <downloads-count type="integer">674296</downloads-count>
1209
+ <number>2.3.8</number>
1210
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1211
+ <platform>ruby</platform>
1212
+ <prerelease type="boolean">false</prerelease>
1213
+ <licenses nil="true"/>
1214
+ </version>
1215
+ <version>
1216
+ <authors>David Heinemeier Hansson</authors>
1217
+ <built-at type="datetime">2010-05-24T07:00:00Z</built-at>
1218
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1219
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1220
+ </description>
1221
+ <downloads-count type="integer">723</downloads-count>
1222
+ <number>2.3.8.pre1</number>
1223
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1224
+ <platform>ruby</platform>
1225
+ <prerelease type="boolean">true</prerelease>
1226
+ <licenses nil="true"/>
1227
+ </version>
1228
+ <version>
1229
+ <authors>David Heinemeier Hansson</authors>
1230
+ <built-at type="datetime">2010-05-24T07:00:00Z</built-at>
1231
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1232
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1233
+ </description>
1234
+ <downloads-count type="integer">9706</downloads-count>
1235
+ <number>2.3.7</number>
1236
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1237
+ <platform>ruby</platform>
1238
+ <prerelease type="boolean">false</prerelease>
1239
+ <licenses nil="true"/>
1240
+ </version>
1241
+ <version>
1242
+ <authors>David Heinemeier Hansson</authors>
1243
+ <built-at type="datetime">2010-05-23T07:00:00Z</built-at>
1244
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1245
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1246
+ </description>
1247
+ <downloads-count type="integer">14513</downloads-count>
1248
+ <number>2.3.6</number>
1249
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1250
+ <platform>ruby</platform>
1251
+ <prerelease type="boolean">false</prerelease>
1252
+ <licenses nil="true"/>
1253
+ </version>
1254
+ <version>
1255
+ <authors>David Heinemeier Hansson</authors>
1256
+ <built-at type="datetime">2010-04-13T07:00:00Z</built-at>
1257
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1258
+ <downloads-count type="integer">34449</downloads-count>
1259
+ <number>3.0.0.beta3</number>
1260
+ <summary>Full-stack web application framework.</summary>
1261
+ <platform>ruby</platform>
1262
+ <prerelease type="boolean">true</prerelease>
1263
+ <licenses nil="true"/>
1264
+ </version>
1265
+ <version>
1266
+ <authors>David Heinemeier Hansson</authors>
1267
+ <built-at type="datetime">2010-04-01T07:00:00Z</built-at>
1268
+ <description>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</description>
1269
+ <downloads-count type="integer">7947</downloads-count>
1270
+ <number>3.0.0.beta2</number>
1271
+ <summary>Full-stack web application framework.</summary>
1272
+ <platform>ruby</platform>
1273
+ <prerelease type="boolean">true</prerelease>
1274
+ <licenses nil="true"/>
1275
+ </version>
1276
+ <version>
1277
+ <authors>David Heinemeier Hansson</authors>
1278
+ <built-at type="datetime">2010-02-04T08:00:00Z</built-at>
1279
+ <description>Full-stack web-application framework.</description>
1280
+ <downloads-count type="integer">23814</downloads-count>
1281
+ <number>3.0.0.beta</number>
1282
+ <summary>Full-stack web-application framework.</summary>
1283
+ <platform>ruby</platform>
1284
+ <prerelease type="boolean">true</prerelease>
1285
+ <licenses nil="true"/>
1286
+ </version>
1287
+ <version>
1288
+ <authors>David Heinemeier Hansson</authors>
1289
+ <built-at type="datetime">2009-11-26T11:00:00Z</built-at>
1290
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1291
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1292
+ </description>
1293
+ <downloads-count type="integer">1022313</downloads-count>
1294
+ <number>2.3.5</number>
1295
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1296
+ <platform>ruby</platform>
1297
+ <prerelease type="boolean">false</prerelease>
1298
+ <licenses nil="true"/>
1299
+ </version>
1300
+ <version>
1301
+ <authors>David Heinemeier Hansson</authors>
1302
+ <built-at type="datetime">2009-09-27T14:00:00Z</built-at>
1303
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1304
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1305
+ </description>
1306
+ <downloads-count type="integer">16977</downloads-count>
1307
+ <number>2.2.3</number>
1308
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1309
+ <platform>ruby</platform>
1310
+ <prerelease type="boolean">false</prerelease>
1311
+ <licenses nil="true"/>
1312
+ </version>
1313
+ <version>
1314
+ <authors>David Heinemeier Hansson</authors>
1315
+ <built-at type="datetime">2009-09-03T15:00:00Z</built-at>
1316
+ <description> Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
1317
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
1318
+ </description>
1319
+ <downloads-count type="integer">215877</downloads-count>
1320
+ <number>2.3.4</number>
1321
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1322
+ <platform>ruby</platform>
1323
+ <prerelease type="boolean">false</prerelease>
1324
+ <licenses nil="true"/>
1325
+ </version>
1326
+ <version>
1327
+ <authors>David Heinemeier Hansson</authors>
1328
+ <built-at type="datetime">2009-07-20T05:00:00Z</built-at>
1329
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1330
+ <downloads-count type="integer">28740</downloads-count>
1331
+ <number>2.3.3</number>
1332
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1333
+ <platform>ruby</platform>
1334
+ <prerelease type="boolean">false</prerelease>
1335
+ <licenses nil="true"/>
1336
+ </version>
1337
+ <version>
1338
+ <authors>David Heinemeier Hansson</authors>
1339
+ <built-at type="datetime">2009-03-15T05:00:00Z</built-at>
1340
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1341
+ <downloads-count type="integer">98014</downloads-count>
1342
+ <number>2.3.2</number>
1343
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1344
+ <platform>ruby</platform>
1345
+ <prerelease type="boolean">false</prerelease>
1346
+ <licenses nil="true"/>
1347
+ </version>
1348
+ <version>
1349
+ <authors>David Heinemeier Hansson</authors>
1350
+ <built-at type="datetime">2008-11-20T23:00:00Z</built-at>
1351
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1352
+ <downloads-count type="integer">111607</downloads-count>
1353
+ <number>2.2.2</number>
1354
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1355
+ <platform>ruby</platform>
1356
+ <prerelease type="boolean">false</prerelease>
1357
+ <licenses nil="true"/>
1358
+ </version>
1359
+ <version>
1360
+ <authors>David Heinemeier Hansson</authors>
1361
+ <built-at type="datetime">2008-10-22T22:00:00Z</built-at>
1362
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1363
+ <downloads-count type="integer">48729</downloads-count>
1364
+ <number>2.1.2</number>
1365
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1366
+ <platform>ruby</platform>
1367
+ <prerelease type="boolean">false</prerelease>
1368
+ <licenses nil="true"/>
1369
+ </version>
1370
+ <version>
1371
+ <authors>David Heinemeier Hansson</authors>
1372
+ <built-at type="datetime">2008-10-18T22:00:00Z</built-at>
1373
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1374
+ <downloads-count type="integer">3451</downloads-count>
1375
+ <number>2.0.5</number>
1376
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1377
+ <platform>ruby</platform>
1378
+ <prerelease type="boolean">false</prerelease>
1379
+ <licenses nil="true"/>
1380
+ </version>
1381
+ <version>
1382
+ <authors>David Heinemeier Hansson</authors>
1383
+ <built-at type="datetime">2008-09-03T22:00:00Z</built-at>
1384
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1385
+ <downloads-count type="integer">14541</downloads-count>
1386
+ <number>2.1.1</number>
1387
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1388
+ <platform>ruby</platform>
1389
+ <prerelease type="boolean">false</prerelease>
1390
+ <licenses nil="true"/>
1391
+ </version>
1392
+ <version>
1393
+ <authors>David Heinemeier Hansson</authors>
1394
+ <built-at type="datetime">2008-09-03T22:00:00Z</built-at>
1395
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1396
+ <downloads-count type="integer">1510</downloads-count>
1397
+ <number>2.0.4</number>
1398
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1399
+ <platform>ruby</platform>
1400
+ <prerelease type="boolean">false</prerelease>
1401
+ <licenses nil="true"/>
1402
+ </version>
1403
+ <version>
1404
+ <authors>David Heinemeier Hansson</authors>
1405
+ <built-at type="datetime">2008-05-31T07:00:00Z</built-at>
1406
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1407
+ <downloads-count type="integer">31521</downloads-count>
1408
+ <number>2.1.0</number>
1409
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1410
+ <platform>ruby</platform>
1411
+ <prerelease type="boolean">false</prerelease>
1412
+ <licenses nil="true"/>
1413
+ </version>
1414
+ <version>
1415
+ <authors>David Heinemeier Hansson</authors>
1416
+ <built-at type="datetime">2007-12-20T06:00:00Z</built-at>
1417
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1418
+ <downloads-count type="integer">33918</downloads-count>
1419
+ <number>2.0.2</number>
1420
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1421
+ <platform>ruby</platform>
1422
+ <prerelease type="boolean">false</prerelease>
1423
+ <licenses nil="true"/>
1424
+ </version>
1425
+ <version>
1426
+ <authors>David Heinemeier Hansson</authors>
1427
+ <built-at type="datetime">2007-12-07T06:00:00Z</built-at>
1428
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1429
+ <downloads-count type="integer">2929</downloads-count>
1430
+ <number>2.0.1</number>
1431
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1432
+ <platform>ruby</platform>
1433
+ <prerelease type="boolean">false</prerelease>
1434
+ <licenses nil="true"/>
1435
+ </version>
1436
+ <version>
1437
+ <authors>David Heinemeier Hansson</authors>
1438
+ <built-at type="datetime">2007-12-06T06:00:00Z</built-at>
1439
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1440
+ <downloads-count type="integer">2692</downloads-count>
1441
+ <number>2.0.0</number>
1442
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1443
+ <platform>ruby</platform>
1444
+ <prerelease type="boolean">false</prerelease>
1445
+ <licenses nil="true"/>
1446
+ </version>
1447
+ <version>
1448
+ <authors>David Heinemeier Hansson</authors>
1449
+ <built-at type="datetime">2007-11-23T11:00:00Z</built-at>
1450
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1451
+ <downloads-count type="integer">19313</downloads-count>
1452
+ <number>1.2.6</number>
1453
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1454
+ <platform>ruby</platform>
1455
+ <prerelease type="boolean">false</prerelease>
1456
+ <licenses nil="true"/>
1457
+ </version>
1458
+ <version>
1459
+ <authors>David Heinemeier Hansson</authors>
1460
+ <built-at type="datetime">2007-10-12T05:00:00Z</built-at>
1461
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1462
+ <downloads-count type="integer">4951</downloads-count>
1463
+ <number>1.2.5</number>
1464
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1465
+ <platform>ruby</platform>
1466
+ <prerelease type="boolean">false</prerelease>
1467
+ <licenses nil="true"/>
1468
+ </version>
1469
+ <version>
1470
+ <authors>David Heinemeier Hansson</authors>
1471
+ <built-at type="datetime">2007-10-04T05:00:00Z</built-at>
1472
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1473
+ <downloads-count type="integer">1753</downloads-count>
1474
+ <number>1.2.4</number>
1475
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1476
+ <platform>ruby</platform>
1477
+ <prerelease type="boolean">false</prerelease>
1478
+ <licenses nil="true"/>
1479
+ </version>
1480
+ <version>
1481
+ <authors>David Heinemeier Hansson</authors>
1482
+ <built-at type="datetime">2007-03-13T05:00:00Z</built-at>
1483
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1484
+ <downloads-count type="integer">17238</downloads-count>
1485
+ <number>1.2.3</number>
1486
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1487
+ <platform>ruby</platform>
1488
+ <prerelease type="boolean">false</prerelease>
1489
+ <licenses nil="true"/>
1490
+ </version>
1491
+ <version>
1492
+ <authors>David Heinemeier Hansson</authors>
1493
+ <built-at type="datetime">2007-02-06T06:00:00Z</built-at>
1494
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1495
+ <downloads-count type="integer">6796</downloads-count>
1496
+ <number>1.2.2</number>
1497
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1498
+ <platform>ruby</platform>
1499
+ <prerelease type="boolean">false</prerelease>
1500
+ <licenses nil="true"/>
1501
+ </version>
1502
+ <version>
1503
+ <authors>David Heinemeier Hansson</authors>
1504
+ <built-at type="datetime">2007-01-18T06:00:00Z</built-at>
1505
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1506
+ <downloads-count type="integer">1608</downloads-count>
1507
+ <number>1.2.1</number>
1508
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1509
+ <platform>ruby</platform>
1510
+ <prerelease type="boolean">false</prerelease>
1511
+ <licenses nil="true"/>
1512
+ </version>
1513
+ <version>
1514
+ <authors>David Heinemeier Hansson</authors>
1515
+ <built-at type="datetime">2007-01-17T06:00:00Z</built-at>
1516
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1517
+ <downloads-count type="integer">1807</downloads-count>
1518
+ <number>1.2.0</number>
1519
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1520
+ <platform>ruby</platform>
1521
+ <prerelease type="boolean">false</prerelease>
1522
+ <licenses nil="true"/>
1523
+ </version>
1524
+ <version>
1525
+ <authors>David Heinemeier Hansson</authors>
1526
+ <built-at type="datetime">2006-08-10T05:00:00Z</built-at>
1527
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1528
+ <downloads-count type="integer">6990</downloads-count>
1529
+ <number>1.1.6</number>
1530
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1531
+ <platform>ruby</platform>
1532
+ <prerelease type="boolean">false</prerelease>
1533
+ <licenses nil="true"/>
1534
+ </version>
1535
+ <version>
1536
+ <authors>David Heinemeier Hansson</authors>
1537
+ <built-at type="datetime">2006-08-09T05:00:00Z</built-at>
1538
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1539
+ <downloads-count type="integer">1117</downloads-count>
1540
+ <number>1.1.5</number>
1541
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1542
+ <platform>ruby</platform>
1543
+ <prerelease type="boolean">false</prerelease>
1544
+ <licenses nil="true"/>
1545
+ </version>
1546
+ <version>
1547
+ <authors>David Heinemeier Hansson</authors>
1548
+ <built-at type="datetime">2006-06-29T05:00:00Z</built-at>
1549
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1550
+ <downloads-count type="integer">1479</downloads-count>
1551
+ <number>1.1.4</number>
1552
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1553
+ <platform>ruby</platform>
1554
+ <prerelease type="boolean">false</prerelease>
1555
+ <licenses nil="true"/>
1556
+ </version>
1557
+ <version>
1558
+ <authors>David Heinemeier Hansson</authors>
1559
+ <built-at type="datetime">2006-06-27T05:00:00Z</built-at>
1560
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1561
+ <downloads-count type="integer">1045</downloads-count>
1562
+ <number>1.1.3</number>
1563
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1564
+ <platform>ruby</platform>
1565
+ <prerelease type="boolean">false</prerelease>
1566
+ <licenses nil="true"/>
1567
+ </version>
1568
+ <version>
1569
+ <authors>David Heinemeier Hansson</authors>
1570
+ <built-at type="datetime">2006-04-09T05:00:00Z</built-at>
1571
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1572
+ <downloads-count type="integer">2132</downloads-count>
1573
+ <number>1.1.2</number>
1574
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1575
+ <platform>ruby</platform>
1576
+ <prerelease type="boolean">false</prerelease>
1577
+ <licenses nil="true"/>
1578
+ </version>
1579
+ <version>
1580
+ <authors>David Heinemeier Hansson</authors>
1581
+ <built-at type="datetime">2006-04-06T05:00:00Z</built-at>
1582
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1583
+ <downloads-count type="integer">1169</downloads-count>
1584
+ <number>1.1.1</number>
1585
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1586
+ <platform>ruby</platform>
1587
+ <prerelease type="boolean">false</prerelease>
1588
+ <licenses nil="true"/>
1589
+ </version>
1590
+ <version>
1591
+ <authors>David Heinemeier Hansson</authors>
1592
+ <built-at type="datetime">2006-03-27T06:00:00Z</built-at>
1593
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1594
+ <downloads-count type="integer">1238</downloads-count>
1595
+ <number>1.1.0</number>
1596
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1597
+ <platform>ruby</platform>
1598
+ <prerelease type="boolean">false</prerelease>
1599
+ <licenses nil="true"/>
1600
+ </version>
1601
+ <version>
1602
+ <authors>David Heinemeier Hansson</authors>
1603
+ <built-at type="datetime">2005-12-13T06:00:00Z</built-at>
1604
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1605
+ <downloads-count type="integer">2008</downloads-count>
1606
+ <number>1.0.0</number>
1607
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1608
+ <platform>ruby</platform>
1609
+ <prerelease type="boolean">false</prerelease>
1610
+ <licenses nil="true"/>
1611
+ </version>
1612
+ <version>
1613
+ <authors>David Heinemeier Hansson</authors>
1614
+ <built-at type="datetime">2005-12-07T06:00:00Z</built-at>
1615
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1616
+ <downloads-count type="integer">1016</downloads-count>
1617
+ <number>0.14.4</number>
1618
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1619
+ <platform>ruby</platform>
1620
+ <prerelease type="boolean">false</prerelease>
1621
+ <licenses nil="true"/>
1622
+ </version>
1623
+ <version>
1624
+ <authors>David Heinemeier Hansson</authors>
1625
+ <built-at type="datetime">2005-11-06T23:00:00Z</built-at>
1626
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1627
+ <downloads-count type="integer">1038</downloads-count>
1628
+ <number>0.14.3</number>
1629
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1630
+ <platform>ruby</platform>
1631
+ <prerelease type="boolean">false</prerelease>
1632
+ <licenses nil="true"/>
1633
+ </version>
1634
+ <version>
1635
+ <authors>David Heinemeier Hansson</authors>
1636
+ <built-at type="datetime">2005-10-25T22:00:00Z</built-at>
1637
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1638
+ <downloads-count type="integer">1104</downloads-count>
1639
+ <number>0.14.2</number>
1640
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1641
+ <platform>ruby</platform>
1642
+ <prerelease type="boolean">false</prerelease>
1643
+ <licenses nil="true"/>
1644
+ </version>
1645
+ <version>
1646
+ <authors>David Heinemeier Hansson</authors>
1647
+ <built-at type="datetime">2005-10-19T04:00:00Z</built-at>
1648
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1649
+ <downloads-count type="integer">1023</downloads-count>
1650
+ <number>0.14.1</number>
1651
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1652
+ <platform>ruby</platform>
1653
+ <prerelease type="boolean">false</prerelease>
1654
+ <licenses nil="true"/>
1655
+ </version>
1656
+ <version>
1657
+ <authors>David Heinemeier Hansson</authors>
1658
+ <built-at type="datetime">2005-07-11T04:00:00Z</built-at>
1659
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.</description>
1660
+ <downloads-count type="integer">2010</downloads-count>
1661
+ <number>0.13.1</number>
1662
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1663
+ <platform>ruby</platform>
1664
+ <prerelease type="boolean">false</prerelease>
1665
+ <licenses nil="true"/>
1666
+ </version>
1667
+ <version>
1668
+ <authors>David Heinemeier Hansson</authors>
1669
+ <built-at type="datetime">2005-07-06T04:00:00Z</built-at>
1670
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1671
+ <downloads-count type="integer">1072</downloads-count>
1672
+ <number>0.13.0</number>
1673
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1674
+ <platform>ruby</platform>
1675
+ <prerelease type="boolean">false</prerelease>
1676
+ <licenses nil="true"/>
1677
+ </version>
1678
+ <version>
1679
+ <authors>David Heinemeier Hansson</authors>
1680
+ <built-at type="datetime">2005-04-20T04:00:00Z</built-at>
1681
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1682
+ <downloads-count type="integer">1326</downloads-count>
1683
+ <number>0.12.1</number>
1684
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1685
+ <platform>ruby</platform>
1686
+ <prerelease type="boolean">false</prerelease>
1687
+ <licenses nil="true"/>
1688
+ </version>
1689
+ <version>
1690
+ <authors>David Heinemeier Hansson</authors>
1691
+ <built-at type="datetime">2005-04-19T04:00:00Z</built-at>
1692
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1693
+ <downloads-count type="integer">1004</downloads-count>
1694
+ <number>0.12.0</number>
1695
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1696
+ <platform>ruby</platform>
1697
+ <prerelease type="boolean">false</prerelease>
1698
+ <licenses nil="true"/>
1699
+ </version>
1700
+ <version>
1701
+ <authors>David Heinemeier Hansson</authors>
1702
+ <built-at type="datetime">2005-03-27T05:00:00Z</built-at>
1703
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1704
+ <downloads-count type="integer">1014</downloads-count>
1705
+ <number>0.11.1</number>
1706
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1707
+ <platform>ruby</platform>
1708
+ <prerelease type="boolean">false</prerelease>
1709
+ <licenses nil="true"/>
1710
+ </version>
1711
+ <version>
1712
+ <authors>David Heinemeier Hansson</authors>
1713
+ <built-at type="datetime">2005-03-22T05:00:00Z</built-at>
1714
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1715
+ <downloads-count type="integer">1028</downloads-count>
1716
+ <number>0.11.0</number>
1717
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1718
+ <platform>ruby</platform>
1719
+ <prerelease type="boolean">false</prerelease>
1720
+ <licenses nil="true"/>
1721
+ </version>
1722
+ <version>
1723
+ <authors>David Heinemeier Hansson</authors>
1724
+ <built-at type="datetime">2005-03-07T05:00:00Z</built-at>
1725
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1726
+ <downloads-count type="integer">1033</downloads-count>
1727
+ <number>0.10.1</number>
1728
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1729
+ <platform>ruby</platform>
1730
+ <prerelease type="boolean">false</prerelease>
1731
+ <licenses nil="true"/>
1732
+ </version>
1733
+ <version>
1734
+ <authors>David Heinemeier Hansson</authors>
1735
+ <built-at type="datetime">2005-02-24T05:00:00Z</built-at>
1736
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1737
+ <downloads-count type="integer">1026</downloads-count>
1738
+ <number>0.10.0</number>
1739
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1740
+ <platform>ruby</platform>
1741
+ <prerelease type="boolean">false</prerelease>
1742
+ <licenses nil="true"/>
1743
+ </version>
1744
+ <version>
1745
+ <authors>David Heinemeier Hansson</authors>
1746
+ <built-at type="datetime">2005-01-25T05:00:00Z</built-at>
1747
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1748
+ <downloads-count type="integer">8259</downloads-count>
1749
+ <number>0.9.5</number>
1750
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1751
+ <platform>ruby</platform>
1752
+ <prerelease type="boolean">false</prerelease>
1753
+ <licenses nil="true"/>
1754
+ </version>
1755
+ <version>
1756
+ <authors>David Heinemeier Hansson</authors>
1757
+ <built-at type="datetime">2005-01-18T05:00:00Z</built-at>
1758
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1759
+ <downloads-count type="integer">1027</downloads-count>
1760
+ <number>0.9.4.1</number>
1761
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1762
+ <platform>ruby</platform>
1763
+ <prerelease type="boolean">false</prerelease>
1764
+ <licenses nil="true"/>
1765
+ </version>
1766
+ <version>
1767
+ <authors>David Heinemeier Hansson</authors>
1768
+ <built-at type="datetime">2005-01-17T05:00:00Z</built-at>
1769
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1770
+ <downloads-count type="integer">1063</downloads-count>
1771
+ <number>0.9.4</number>
1772
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1773
+ <platform>ruby</platform>
1774
+ <prerelease type="boolean">false</prerelease>
1775
+ <licenses nil="true"/>
1776
+ </version>
1777
+ <version>
1778
+ <authors>David Heinemeier Hansson</authors>
1779
+ <built-at type="datetime">2005-01-04T05:00:00Z</built-at>
1780
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1781
+ <downloads-count type="integer">1023</downloads-count>
1782
+ <number>0.9.3</number>
1783
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1784
+ <platform>ruby</platform>
1785
+ <prerelease type="boolean">false</prerelease>
1786
+ <licenses nil="true"/>
1787
+ </version>
1788
+ <version>
1789
+ <authors></authors>
1790
+ <built-at type="datetime">2004-12-23T05:00:00Z</built-at>
1791
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1792
+ <downloads-count type="integer">1086</downloads-count>
1793
+ <number>0.9.2</number>
1794
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1795
+ <platform>ruby</platform>
1796
+ <prerelease type="boolean">false</prerelease>
1797
+ <licenses nil="true"/>
1798
+ </version>
1799
+ <version>
1800
+ <authors></authors>
1801
+ <built-at type="datetime">2004-12-17T05:00:00Z</built-at>
1802
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1803
+ <downloads-count type="integer">1030</downloads-count>
1804
+ <number>0.9.1</number>
1805
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1806
+ <platform>ruby</platform>
1807
+ <prerelease type="boolean">false</prerelease>
1808
+ <licenses nil="true"/>
1809
+ </version>
1810
+ <version>
1811
+ <authors></authors>
1812
+ <built-at type="datetime">2004-12-16T05:00:00Z</built-at>
1813
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1814
+ <downloads-count type="integer">1042</downloads-count>
1815
+ <number>0.9.0</number>
1816
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1817
+ <platform>ruby</platform>
1818
+ <prerelease type="boolean">false</prerelease>
1819
+ <licenses nil="true"/>
1820
+ </version>
1821
+ <version>
1822
+ <authors></authors>
1823
+ <built-at type="datetime">2004-11-18T05:00:00Z</built-at>
1824
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1825
+ <downloads-count type="integer">1022</downloads-count>
1826
+ <number>0.8.5</number>
1827
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1828
+ <platform>ruby</platform>
1829
+ <prerelease type="boolean">false</prerelease>
1830
+ <licenses nil="true"/>
1831
+ </version>
1832
+ <version>
1833
+ <authors></authors>
1834
+ <built-at type="datetime">2004-10-25T04:00:00Z</built-at>
1835
+ <description>Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.</description>
1836
+ <downloads-count type="integer">6374106</downloads-count>
1837
+ <number>0.8.0</number>
1838
+ <summary>Web-application framework with template engine, control-flow layer, and ORM.</summary>
1839
+ <platform>ruby</platform>
1840
+ <prerelease type="boolean">false</prerelease>
1841
+ <licenses nil="true"/>
1842
+ </version>
1843
+ </versions>