rubyforge 2.0.0 → 2.0.1
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.
- data/History.txt +4 -0
- data/Rakefile +2 -2
- data/lib/rubyforge.rb +1 -1
- metadata +13 -4
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -9,14 +9,14 @@ abort "you _must_ install this gem to release it" if
|
|
9
9
|
|
10
10
|
Hoe.plugin :email
|
11
11
|
|
12
|
-
Hoe.spec "rubyforge" do
|
12
|
+
Hoe.spec "rubyforge" do
|
13
13
|
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
|
14
14
|
developer 'Eric Hodel', 'drbrain@segment7.net'
|
15
15
|
developer 'Ara T Howard', 'ara.t.howard@gmail.com'
|
16
16
|
developer 'Tom Copeland', 'tom@infoether.com'
|
17
17
|
|
18
18
|
multiruby_skip << "rubinius"
|
19
|
-
|
19
|
+
extra_deps << ["json",">= 1.1.7"]
|
20
20
|
self.rubyforge_name = "codeforpeople"
|
21
21
|
self.need_tar = false
|
22
22
|
end
|
data/lib/rubyforge.rb
CHANGED
@@ -14,7 +14,7 @@ $DEBUG=false
|
|
14
14
|
class RubyForge
|
15
15
|
|
16
16
|
# :stopdoc:
|
17
|
-
VERSION = '2.0.
|
17
|
+
VERSION = '2.0.1'
|
18
18
|
HOME = ENV["HOME"] || ENV["HOMEPATH"] || File::expand_path("~")
|
19
19
|
RUBYFORGE_D = File::join HOME, ".rubyforge"
|
20
20
|
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.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Davis
|
@@ -12,10 +12,19 @@ autorequire:
|
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
14
|
|
15
|
-
date: 2009-
|
15
|
+
date: 2009-10-02 00:00:00 -04:00
|
16
16
|
default_executable:
|
17
|
-
dependencies:
|
18
|
-
|
17
|
+
dependencies:
|
18
|
+
- !ruby/object:Gem::Dependency
|
19
|
+
name: json
|
20
|
+
type: :runtime
|
21
|
+
version_requirement:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.1.7
|
27
|
+
version:
|
19
28
|
description: |-
|
20
29
|
A script which automates a limited set of rubyforge operations.
|
21
30
|
|