unit_hosting 0.0.1 → 0.0.2
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/unit_hosting.rb +1 -1
- data/lib/unit_hosting/base.rb +1 -1
- data/lib/unit_hosting/vm.rb +1 -1
- data/lib/unit_hosting/vm_group.rb +2 -1
- metadata +13 -4
data/lib/unit_hosting.rb
CHANGED
data/lib/unit_hosting/base.rb
CHANGED
@@ -18,7 +18,7 @@ module UnitHosting
|
|
18
18
|
@instance_id = instance_id
|
19
19
|
@api_key = api_key
|
20
20
|
@server = XMLRPC::Client.
|
21
|
-
new_from_uri("https://www.unit-hosting.com/xmlrpc")
|
21
|
+
new_from_uri("https://www.unit-hosting.com/xmlrpc",nil,1000)
|
22
22
|
@server.instance_variable_get(:@http).
|
23
23
|
instance_variable_get(:@ssl_context).
|
24
24
|
instance_variable_set(:@verify_mode, OpenSSL::SSL::VERIFY_NONE)
|
data/lib/unit_hosting/vm.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unit_hosting
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Yoshihiro TAKAHARA
|
@@ -14,16 +15,18 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-05-
|
18
|
+
date: 2010-05-15 00:00:00 +09:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
21
22
|
name: rubyforge
|
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: 9
|
27
30
|
segments:
|
28
31
|
- 2
|
29
32
|
- 0
|
@@ -35,9 +38,11 @@ dependencies:
|
|
35
38
|
name: hoe
|
36
39
|
prerelease: false
|
37
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
38
42
|
requirements:
|
39
43
|
- - ">="
|
40
44
|
- !ruby/object:Gem::Version
|
45
|
+
hash: 23
|
41
46
|
segments:
|
42
47
|
- 2
|
43
48
|
- 6
|
@@ -85,23 +90,27 @@ rdoc_options:
|
|
85
90
|
require_paths:
|
86
91
|
- lib
|
87
92
|
required_ruby_version: !ruby/object:Gem::Requirement
|
93
|
+
none: false
|
88
94
|
requirements:
|
89
95
|
- - ">="
|
90
96
|
- !ruby/object:Gem::Version
|
97
|
+
hash: 3
|
91
98
|
segments:
|
92
99
|
- 0
|
93
100
|
version: "0"
|
94
101
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
|
+
none: false
|
95
103
|
requirements:
|
96
104
|
- - ">="
|
97
105
|
- !ruby/object:Gem::Version
|
106
|
+
hash: 3
|
98
107
|
segments:
|
99
108
|
- 0
|
100
109
|
version: "0"
|
101
110
|
requirements: []
|
102
111
|
|
103
112
|
rubyforge_project: unit_hosting
|
104
|
-
rubygems_version: 1.3.
|
113
|
+
rubygems_version: 1.3.7
|
105
114
|
signing_key:
|
106
115
|
specification_version: 3
|
107
116
|
summary: This is a simple API wrapper of UnitHosting( http://www.unit-hosting.com/ ) .
|