rubygems-update 0.8.5 → 0.8.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rubygems-update might be problematic. Click here for more details.

data/ChangeLog CHANGED
@@ -1,5 +1,13 @@
1
+ 2005-02-27 Chad Fowler <chad@chadfowler.com>
2
+
3
+ * Released 0.8.6
4
+
5
+ * Fixed a small bug with shebang construction
6
+
1
7
  2005-02-26 Jim Weirich <jim@weirichhouse.org>
2
8
 
9
+ * Released 0.8.5
10
+
3
11
  * lib/rubygems/doc_manager.rb (Gem::DocManager::generate_rdoc):
4
12
  Removed warning about generating rdocs on gems w/o an rdoc flag.
5
13
 
@@ -35,9 +43,11 @@
35
43
  patch to fix unit test running bug.
36
44
 
37
45
  2005-01-14 Chad Fowler <chad@chadfowler.com>
38
- * lib/rubygems/installer.rb: attempt at fixing Ryan Davis's reported Shebang bug.
39
- STILL NOT WORKING, because it doesn't work with ^M characters.
40
- * lib/rubygems/config_file.rb: small but ugly error fixed if no config file exists.
46
+ * lib/rubygems/installer.rb: attempt at fixing Ryan Davis's
47
+ reported Shebang bug. STILL NOT WORKING, because it doesn't work
48
+ with ^M characters.
49
+ * lib/rubygems/config_file.rb: small but ugly error fixed if no
50
+ config file exists.
41
51
  * lib/rubygems/remote_installer.rb: Fixed bug http://rubyforge.org/tracker/index.php?func=detail&aid=1331&group_id=126&atid=575.
42
52
 
43
53
  2005-01-01 Chad Fowler <chad@chadfowler.com>
@@ -159,7 +159,7 @@ module Gem
159
159
  if first_line =~ /^#!/ then
160
160
  first_line.sub(/\A\#!\s*\S*ruby\S*/, "#!" + File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])) #Thanks RPA
161
161
  else
162
- File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])
162
+ "\#!#{File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])}"
163
163
  end
164
164
  end
165
165
 
@@ -2,5 +2,5 @@
2
2
  # This file is auto-generated by build scripts.
3
3
  # See: rake update_version
4
4
  module Gem
5
- RubyGemsVersion = '0.8.5'
5
+ RubyGemsVersion = '0.8.6'
6
6
  end
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ CODE = 1
@@ -0,0 +1,8 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = %q{a}
3
+ s.version = "0.0.1"
4
+ s.date = %q{2005-02-27}
5
+ s.summary = %q{summary}
6
+ s.description = %q{desc}
7
+ s.files = ["lib/code.rb"]
8
+ end
@@ -0,0 +1,8 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = %q{a}
3
+ s.version = "0.0.2"
4
+ s.date = %q{2005-02-27}
5
+ s.summary = %q{summary}
6
+ s.description = %q{desc}
7
+ s.files = ["lib/code.rb"]
8
+ end
@@ -0,0 +1,8 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = %q{b}
3
+ s.version = "0.0.2"
4
+ s.date = %q{2005-02-27}
5
+ s.summary = %q{summary}
6
+ s.description = %q{desc}
7
+ s.files = ["lib/code.rb"]
8
+ end
@@ -0,0 +1,8 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = %q{c}
3
+ s.version = "1.2"
4
+ s.date = %q{2005-02-27}
5
+ s.summary = %q{summary}
6
+ s.description = %q{desc}
7
+ s.files = ["lib/code.rb"]
8
+ end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.4.1
2
+ rubygems_version: 0.8.5
3
3
  specification_version: 1
4
4
  name: rubygems-update
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.8.5
7
- date: 2005-02-26
6
+ version: 0.8.6
7
+ date: 2005-02-27
8
8
  summary: RubyGems Update GEM
9
9
  require_paths:
10
10
  - lib
@@ -41,17 +41,17 @@ files:
41
41
  - doc/doc.css
42
42
  - doc/makedoc.rb
43
43
  - examples/application
44
+ - examples/application/an-app.gemspec
44
45
  - examples/application/bin
45
46
  - examples/application/lib
46
- - examples/application/an-app.gemspec
47
47
  - examples/application/bin/myapp
48
48
  - examples/application/lib/somefunctionality.rb
49
- - gemspecs/ook.gemspec
50
- - gemspecs/README
51
49
  - gemspecs/cgikit-1.1.0.gemspec
52
50
  - gemspecs/jabber4r.gemspec
53
51
  - gemspecs/linguistics.gemspec
52
+ - gemspecs/ook.gemspec
54
53
  - gemspecs/progressbar.gemspec
54
+ - gemspecs/README
55
55
  - gemspecs/redcloth.gemspec
56
56
  - gemspecs/rublog.gemspec
57
57
  - gemspecs/ruby-doom.gemspec
@@ -60,12 +60,13 @@ files:
60
60
  - lib/rubygems.rb
61
61
  - lib/ubygems.rb
62
62
  - lib/rubygems/builder.rb
63
+ - lib/rubygems/cmd_manager.rb
63
64
  - lib/rubygems/command.rb
64
65
  - lib/rubygems/config_file.rb
65
66
  - lib/rubygems/custom_require.rb
66
67
  - lib/rubygems/doc_manager.rb
67
68
  - lib/rubygems/format.rb
68
- - lib/rubygems/cmd_manager.rb
69
+ - lib/rubygems/gem_commands.rb
69
70
  - lib/rubygems/gem_runner.rb
70
71
  - lib/rubygems/installer.rb
71
72
  - lib/rubygems/loadpath_manager.rb
@@ -80,7 +81,6 @@ files:
80
81
  - lib/rubygems/user_interaction.rb
81
82
  - lib/rubygems/validator.rb
82
83
  - lib/rubygems/version.rb
83
- - lib/rubygems/gem_commands.rb
84
84
  - pkgs/sources
85
85
  - pkgs/sources/lib
86
86
  - pkgs/sources/sources.gemspec
@@ -90,13 +90,13 @@ files:
90
90
  - scripts/gemdoc.rb
91
91
  - scripts/runtest.rb
92
92
  - scripts/specdoc.rb
93
- - test/data
94
- - test/mock
95
93
  - test/bogussources.rb
94
+ - test/data
96
95
  - test/functional.rb
97
96
  - test/gemenvironment.rb
98
97
  - test/gemutilities.rb
99
98
  - test/insure_session.rb
99
+ - test/mock
100
100
  - test/mockgemui.rb
101
101
  - test/onegem.rb
102
102
  - test/simple_gem.rb
@@ -122,18 +122,48 @@ files:
122
122
  - test/testgem.rc
123
123
  - test/user_capture.rb
124
124
  - test/yaml_data.rb
125
+ - test/data/a-0.0.1.gem
126
+ - test/data/a-0.0.2.gem
127
+ - test/data/b-0.0.2.gem
128
+ - test/data/c-1.2.gem
129
+ - test/data/gemhome
125
130
  - test/data/gems
126
- - test/data/one
127
131
  - test/data/legacy
128
132
  - test/data/lib
133
+ - test/data/one
134
+ - test/data/gemhome/cache
135
+ - test/data/gemhome/doc
136
+ - test/data/gemhome/gems
137
+ - test/data/gemhome/specifications
138
+ - test/data/gemhome/cache/a-0.0.1.gem
139
+ - test/data/gemhome/cache/a-0.0.2.gem
140
+ - test/data/gemhome/cache/b-0.0.2.gem
141
+ - test/data/gemhome/cache/c-1.2.gem
142
+ - test/data/gemhome/gems/a-0.0.1
143
+ - test/data/gemhome/gems/a-0.0.2
144
+ - test/data/gemhome/gems/b-0.0.2
145
+ - test/data/gemhome/gems/c-1.2
146
+ - test/data/gemhome/gems/a-0.0.1/lib
147
+ - test/data/gemhome/gems/a-0.0.1/lib/code.rb
148
+ - test/data/gemhome/gems/a-0.0.2/lib
149
+ - test/data/gemhome/gems/a-0.0.2/lib/code.rb
150
+ - test/data/gemhome/gems/b-0.0.2/lib
151
+ - test/data/gemhome/gems/b-0.0.2/lib/code.rb
152
+ - test/data/gemhome/gems/c-1.2/lib
153
+ - test/data/gemhome/gems/c-1.2/lib/code.rb
154
+ - test/data/gemhome/specifications/a-0.0.1.gemspec
155
+ - test/data/gemhome/specifications/a-0.0.2.gemspec
156
+ - test/data/gemhome/specifications/b-0.0.2.gemspec
157
+ - test/data/gemhome/specifications/c-1.2.gemspec
158
+ - test/data/legacy/keyedlist-0.4.0.ruby
159
+ - test/data/legacy/keyedlist-0.4.0.yaml
160
+ - test/data/lib/code.rb
129
161
  - test/data/one/lib
130
- - test/data/one/README.one
162
+ - test/data/one/one-0.0.1.gem
131
163
  - test/data/one/one.gemspec
132
164
  - test/data/one/one.yaml
165
+ - test/data/one/README.one
133
166
  - test/data/one/lib/one.rb
134
- - test/data/legacy/keyedlist-0.4.0.ruby
135
- - test/data/legacy/keyedlist-0.4.0.yaml
136
- - test/data/lib/code.rb
137
167
  - test/mock/gems
138
168
  - test/mock/gems/cache
139
169
  - test/mock/gems/doc