Skip to content

Commit

Permalink
ChangeLog update, fix RSS test to use arbitrary dates
Browse files Browse the repository at this point in the history
git-svn-id: http://rubygems.rubyforge.org/svn/trunk@2239 3d4018f9-ac1a-0410-99e9-8a154d859a19
  • Loading branch information
drbrain committed Jun 22, 2009
1 parent c042daf commit 1e24526
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
12 changes: 12 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# -*- coding: utf-8 -*-

2009-06-12 Ryan Davis <ryand@zenspider.com>

* Rakefile: Switched to Hoe.

2009-06-10 Phil Hagelberg <technomancy@gmail.com>

* lib/rubygems/installer.rb: --user-install is no longer enabled by
default.
* lib/rubygems/source_index.rb: Fix use of prerelease gems.

2009-06-04 Eric Hodel <drbrain@segment7.net>

* util/gem_prelude.rb.template: Backports from 1.9.
Expand All @@ -18,6 +28,8 @@

2009-05-30 Eric Hodel <drbrain@segment7.net>

* lib/rubygems/commands/which_command.rb: Only print out directory
information to a TTY.
* lib/rubygems/rubygems_version.rb: 1.3.4.
* doc/release_notes/rel_1_3_4.rdoc: RubyGems 1.3.4 release notes.

Expand Down
18 changes: 9 additions & 9 deletions test/test_gem_indexer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def test_generate_index
<guid>a-2</guid>
<enclosure url=\"http://gems.example.com/gems/a-2.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>Wed, 10 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@a2.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
Expand All @@ -195,7 +195,7 @@ def test_generate_index
<guid>a-3.a</guid>
<enclosure url=\"http://gems.example.com/gems/a-3.a.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>Wed, 10 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@a3a.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
Expand All @@ -207,7 +207,7 @@ def test_generate_index
<guid>a_evil-9</guid>
<enclosure url=\"http://gems.example.com/gems/a_evil-9.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>Wed, 10 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@a_evil9.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
Expand All @@ -219,7 +219,7 @@ def test_generate_index
<guid>b-2</guid>
<enclosure url=\"http://gems.example.com/gems/b-2.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>Wed, 10 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@b2.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
Expand All @@ -231,7 +231,7 @@ def test_generate_index
<guid>c-1.2</guid>
<enclosure url=\"http://gems.example.com/gems/c-1.2.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>Wed, 10 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@c1_2.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
Expand All @@ -243,7 +243,7 @@ def test_generate_index
<guid>d-2.0.a</guid>
<enclosure url=\"http://gems.example.com/gems/d-2.0.a.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>Wed, 10 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@d2_0_a.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
Expand All @@ -255,7 +255,7 @@ def test_generate_index
<guid>d-2.0.b</guid>
<enclosure url=\"http://gems.example.com/gems/d-2.0.b.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>Wed, 10 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@d2_0_b.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
Expand All @@ -267,7 +267,7 @@ def test_generate_index
<guid>pl-1-x86-linux</guid>
<enclosure url=\"http://gems.example.com/gems/pl-1-x86-linux.gem\"
length=\"3072\" type=\"application/octet-stream\" />
<pubDate>Wed, 10 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@pl1.date.rfc2822}</pubDate>
<link>http://example.com</link>
</item>
<item>
Expand All @@ -288,7 +288,7 @@ def test_generate_index
<guid>a-1</guid>
<enclosure url=\"http://gems.example.com/gems/a-1.gem\"
length=\"3584\" type=\"application/octet-stream\" />
<pubDate>Tue, 09 Jun 2009 00:00:00 -0700</pubDate>
<pubDate>#{@a1.date.rfc2822}</pubDate>
<link>http://a.example.com</link>
</item>
</channel>
Expand Down

0 comments on commit 1e24526

Please sign in to comment.