geminabox 0.2.9 → 0.2.10
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/lib/rubygems/commands/inabox_command.rb +5 -1
- metadata +13 -4
|
@@ -19,6 +19,10 @@ class Gem::Commands::InaboxCommand < Gem::Command
|
|
|
19
19
|
add_option('-c', '--configure', "Configure GemInABox") do |value, options|
|
|
20
20
|
options[:configure] = true
|
|
21
21
|
end
|
|
22
|
+
|
|
23
|
+
add_option('-g', '--host HOST', "Host to upload to.") do |value, options|
|
|
24
|
+
options[:host] = value
|
|
25
|
+
end
|
|
22
26
|
end
|
|
23
27
|
|
|
24
28
|
def execute
|
|
@@ -88,7 +92,7 @@ class Gem::Commands::InaboxCommand < Gem::Command
|
|
|
88
92
|
end
|
|
89
93
|
|
|
90
94
|
def geminabox_host
|
|
91
|
-
geminabox_host ||= Gem.configuration.load_file(config_path)[:host]
|
|
95
|
+
@geminabox_host ||= options[:host] || Gem.configuration.load_file(config_path)[:host]
|
|
92
96
|
end
|
|
93
97
|
|
|
94
98
|
def geminabox_host=(host)
|
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: geminabox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 3
|
|
4
5
|
prerelease: false
|
|
5
6
|
segments:
|
|
6
7
|
- 0
|
|
7
8
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 0.2.
|
|
9
|
+
- 10
|
|
10
|
+
version: 0.2.10
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- Tom Lea
|
|
@@ -14,16 +15,18 @@ autorequire:
|
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
16
17
|
|
|
17
|
-
date:
|
|
18
|
+
date: 2011-01-31 00:00:00 +00:00
|
|
18
19
|
default_executable:
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
21
22
|
name: sinatra
|
|
22
23
|
prerelease: false
|
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
24
26
|
requirements:
|
|
25
27
|
- - ">="
|
|
26
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
27
30
|
segments:
|
|
28
31
|
- 0
|
|
29
32
|
version: "0"
|
|
@@ -33,9 +36,11 @@ dependencies:
|
|
|
33
36
|
name: builder
|
|
34
37
|
prerelease: false
|
|
35
38
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
36
40
|
requirements:
|
|
37
41
|
- - ">="
|
|
38
42
|
- !ruby/object:Gem::Version
|
|
43
|
+
hash: 3
|
|
39
44
|
segments:
|
|
40
45
|
- 0
|
|
41
46
|
version: "0"
|
|
@@ -75,23 +80,27 @@ rdoc_options:
|
|
|
75
80
|
require_paths:
|
|
76
81
|
- lib
|
|
77
82
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
|
+
none: false
|
|
78
84
|
requirements:
|
|
79
85
|
- - ">="
|
|
80
86
|
- !ruby/object:Gem::Version
|
|
87
|
+
hash: 3
|
|
81
88
|
segments:
|
|
82
89
|
- 0
|
|
83
90
|
version: "0"
|
|
84
91
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
|
+
none: false
|
|
85
93
|
requirements:
|
|
86
94
|
- - ">="
|
|
87
95
|
- !ruby/object:Gem::Version
|
|
96
|
+
hash: 3
|
|
88
97
|
segments:
|
|
89
98
|
- 0
|
|
90
99
|
version: "0"
|
|
91
100
|
requirements: []
|
|
92
101
|
|
|
93
102
|
rubyforge_project:
|
|
94
|
-
rubygems_version: 1.3.
|
|
103
|
+
rubygems_version: 1.3.7
|
|
95
104
|
signing_key:
|
|
96
105
|
specification_version: 3
|
|
97
106
|
summary: Really simple rubygem hosting
|