rubyforge 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
data.tar.gz.sig ADDED
Binary file
data/History.txt CHANGED
@@ -1,3 +1,10 @@
1
+ === 1.0.5 / 2009-09-15
2
+
3
+ * Added experimental script to sync RF trackers with release names.
4
+ * Fixed that damned processor_id bug. (hinegardner)
5
+ * The century usually doesn't change across runs. Refactor.
6
+ * Fix use of Time.utc if args.size < 10, tho seems unnecessary.
7
+
1
8
  === 1.0.4 / 2009-07-21
2
9
 
3
10
  * Uses the passed in proxy, if provided. (Thanks sdabet, RF #24071).
data/lib/rubyforge.rb CHANGED
@@ -11,7 +11,7 @@ $TESTING = false unless defined? $TESTING
11
11
  class RubyForge
12
12
 
13
13
  # :stopdoc:
14
- VERSION = '1.0.4'
14
+ VERSION = '1.0.5'
15
15
  HOME = ENV["HOME"] || ENV["HOMEPATH"] || File::expand_path("~")
16
16
  RUBYFORGE_D = File::join HOME, ".rubyforge"
17
17
  CONFIG_F = File::join RUBYFORGE_D, "user-config.yml"
@@ -136,6 +136,8 @@ class RubyForge
136
136
  package = nil
137
137
  html.scan(/<h3>[^<]+|release_id=\d+">[^>]+|filemodule_id=\d+/).each do |s|
138
138
  case s
139
+ when /<h3>Gem namespace ownership/ then
140
+ break
139
141
  when /<h3>([^<]+)/ then
140
142
  package = $1.strip
141
143
  when /release_id=(\d+)">([^<]+)/ then
@@ -5,12 +5,12 @@ require 'rubyforge/cookie_manager'
5
5
 
6
6
  # clean up warnings caused by web servers that send down 2 digit years
7
7
  class Time
8
+ CENTURY = Time.now.year / 100 * 100
9
+
8
10
  class << self
9
11
  alias :old_utc :utc
10
-
11
12
  def utc(*args)
12
- century = Time.now.year / 100 * 100
13
- args[0] += century if args[0] < 100
13
+ args[0] += CENTURY if args[0] < 100 if args.length < 10
14
14
  old_utc(*args)
15
15
  end
16
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyforge
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -9,9 +9,30 @@ authors:
9
9
  - Ara T Howard
10
10
  autorequire:
11
11
  bindir: bin
12
- cert_chain: []
12
+ cert_chain:
13
+ - |
14
+ -----BEGIN CERTIFICATE-----
15
+ MIIDPjCCAiagAwIBAgIBADANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
16
+ ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
17
+ GRYDY29tMB4XDTA5MDMwNjE4NTMxNVoXDTEwMDMwNjE4NTMxNVowRTETMBEGA1UE
18
+ AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
19
+ JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
20
+ b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
21
+ taCPaLmfYIaFcHHCSY4hYDJijRQkLxPeB3xbOfzfLoBDbjvx5JxgJxUjmGa7xhcT
22
+ oOvjtt5P8+GSK9zLzxQP0gVLS/D0FmoE44XuDr3iQkVS2ujU5zZL84mMNqNB1znh
23
+ GiadM9GHRaDiaxuX0cIUBj19T01mVE2iymf9I6bEsiayK/n6QujtyCbTWsAS9Rqt
24
+ qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
25
+ gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
26
+ HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB
27
+ AQAY59gYvDxqSqgC92nAP9P8dnGgfZgLxP237xS6XxFGJSghdz/nI6pusfCWKM8m
28
+ vzjjH2wUMSSf3tNudQ3rCGLf2epkcU13/rguI88wO6MrE0wi4ZqLQX+eZQFskJb/
29
+ w6x9W1ur8eR01s397LSMexySDBrJOh34cm2AlfKr/jokKCTwcM0OvVZnAutaovC0
30
+ l1SVZ0ecg88bsWHA0Yhh7NFxK1utWoIhtB6AFC/+trM0FQEB/jZkIS8SaNzn96Rl
31
+ n0sZEf77FLf5peR8TP/PtmIg7Cyqz23sLM4mCOoTGIy5OcZ8TdyiyINUHtb5ej/T
32
+ FBHgymkyj/AOSqKRIpXPhjC6
33
+ -----END CERTIFICATE-----
13
34
 
14
- date: 2009-07-21 00:00:00 -07:00
35
+ date: 2009-09-14 00:00:00 -07:00
15
36
  default_executable:
16
37
  dependencies: []
17
38
 
@@ -77,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
98
  requirements: []
78
99
 
79
100
  rubyforge_project: codeforpeople
80
- rubygems_version: 1.3.4
101
+ rubygems_version: 1.3.5
81
102
  signing_key:
82
103
  specification_version: 3
83
104
  summary: A script which automates a limited set of rubyforge operations
metadata.gz.sig ADDED
Binary file