rubyforge 2.0.3 → 2.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/bin/rubyforge +4 -0
  3. data/lib/rubyforge.rb +1 -1
  4. metadata +3 -3
@@ -1,3 +1,7 @@
1
+ === 2.0.4 / 2010-02-28
2
+
3
+ * Stubbed out login and logout commands to print a warning and return
4
+
1
5
  === 2.0.3 / 2009-10-11
2
6
 
3
7
  * Added check to ensure user-config contains 'api.rubyforge.org' (Ryan Davis)
@@ -146,6 +146,10 @@ mode = "help" if opts["help"]
146
146
  case mode
147
147
  when %r/help/
148
148
  USAGE.display
149
+ when %r/login/
150
+ puts "No need to call login since each API request is authenticated separately"
151
+ when %r/logout/
152
+ puts "No need to call logout since each API request is authenticated separately"
149
153
  when %r/setup/
150
154
  rubyforge.setup
151
155
  when %r/config/
@@ -12,7 +12,7 @@ $TESTING = false unless defined? $TESTING
12
12
  class RubyForge
13
13
 
14
14
  # :stopdoc:
15
- VERSION = '2.0.3'
15
+ VERSION = '2.0.4'
16
16
  HOME = ENV["HOME"] || ENV["HOMEPATH"] || File::expand_path("~")
17
17
  RUBYFORGE_D = File::join HOME, ".rubyforge"
18
18
  CONFIG_F = File::join RUBYFORGE_D, "user-config.yml"
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: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-10-11 00:00:00 -04:00
15
+ date: 2010-03-01 00:00:00 -05:00
16
16
  default_executable:
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  requirements: []
83
83
 
84
84
  rubyforge_project: codeforpeople
85
- rubygems_version: 1.3.4
85
+ rubygems_version: 1.3.5
86
86
  signing_key:
87
87
  specification_version: 3
88
88
  summary: A script which automates a limited set of rubyforge operations