softlayer_api 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/softlayer/base.rb +1 -1
- metadata +24 -8
data/lib/softlayer/base.rb
CHANGED
@@ -35,7 +35,7 @@
|
|
35
35
|
# - <tt>$SL_API_BASE_URL</tt>- The default URL used to access the SoftLayer API. This defaults to the value of SoftLayer::API_PUBLIC_ENDPOINT
|
36
36
|
#
|
37
37
|
module SoftLayer
|
38
|
-
VERSION = "1.0.
|
38
|
+
VERSION = "1.0.1"
|
39
39
|
|
40
40
|
# The base URL of the SoftLayer API's REST-like endpoints available to the public internet.
|
41
41
|
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/rest/v3/'
|
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: softlayer_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 21
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- SoftLayer Development Team
|
@@ -14,14 +20,18 @@ default_executable:
|
|
14
20
|
dependencies:
|
15
21
|
- !ruby/object:Gem::Dependency
|
16
22
|
name: json
|
17
|
-
|
18
|
-
|
19
|
-
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
20
26
|
requirements:
|
21
27
|
- - ">="
|
22
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
23
32
|
version: "0"
|
24
|
-
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
25
35
|
description: The softlayer_api gem offers a convenient mechanism for invoking the services of the SoftLayer API from Ruby.
|
26
36
|
email: sldn@softlayer.com
|
27
37
|
executables: []
|
@@ -54,21 +64,27 @@ rdoc_options: []
|
|
54
64
|
require_paths:
|
55
65
|
- lib
|
56
66
|
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
57
68
|
requirements:
|
58
69
|
- - ">="
|
59
70
|
- !ruby/object:Gem::Version
|
71
|
+
hash: 3
|
72
|
+
segments:
|
73
|
+
- 0
|
60
74
|
version: "0"
|
61
|
-
version:
|
62
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
63
77
|
requirements:
|
64
78
|
- - ">="
|
65
79
|
- !ruby/object:Gem::Version
|
80
|
+
hash: 3
|
81
|
+
segments:
|
82
|
+
- 0
|
66
83
|
version: "0"
|
67
|
-
version:
|
68
84
|
requirements: []
|
69
85
|
|
70
86
|
rubyforge_project:
|
71
|
-
rubygems_version: 1.3.
|
87
|
+
rubygems_version: 1.3.7
|
72
88
|
signing_key:
|
73
89
|
specification_version: 3
|
74
90
|
summary: Library for accessing the SoftLayer portal API
|