rest_connection 0.0.16 → 0.0.17
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/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.17
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This file is part of RestConnection
|
|
2
|
+
#
|
|
3
|
+
# RestConnection is free software: you can redistribute it and/or modify
|
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
|
5
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
6
|
+
# (at your option) any later version.
|
|
7
|
+
#
|
|
8
|
+
# RestConnection is distributed in the hope that it will be useful,
|
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11
|
+
# GNU General Public License for more details.
|
|
12
|
+
#
|
|
13
|
+
# You should have received a copy of the GNU General Public License
|
|
14
|
+
# along with RestConnection. If not, see <http://www.gnu.org/licenses/>.
|
|
15
|
+
#
|
|
16
|
+
|
|
17
|
+
class Credential
|
|
18
|
+
include RightScale::Api::Base
|
|
19
|
+
extend RightScale::Api::BaseExtend
|
|
20
|
+
end
|
|
@@ -42,3 +42,4 @@ require 'rest_connection/rightscale/multi_cloud_image_internal'
|
|
|
42
42
|
require 'rest_connection/rightscale/multi_cloud_image_cloud_setting_internal'
|
|
43
43
|
require 'rest_connection/rightscale/ec2_server_array'
|
|
44
44
|
require 'rest_connection/rightscale/ec2_elastic_ip'
|
|
45
|
+
require 'rest_connection/rightscale/credential'
|
data/rest_connection.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{rest_connection}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.17"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jeremy Deininger"]
|
|
12
|
-
s.date = %q{2011-02-
|
|
12
|
+
s.date = %q{2011-02-09}
|
|
13
13
|
s.description = %q{provides rest_connection}
|
|
14
14
|
s.email = %q{jeremy@rubyonlinux.org}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -32,6 +32,7 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
"lib/rest_connection.rb",
|
|
33
33
|
"lib/rest_connection/rightscale/alert_spec.rb",
|
|
34
34
|
"lib/rest_connection/rightscale/audit_entry.rb",
|
|
35
|
+
"lib/rest_connection/rightscale/credential.rb",
|
|
35
36
|
"lib/rest_connection/rightscale/deployment.rb",
|
|
36
37
|
"lib/rest_connection/rightscale/ec2_ebs_snapshot.rb",
|
|
37
38
|
"lib/rest_connection/rightscale/ec2_ebs_volume.rb",
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rest_connection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 61
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 17
|
|
10
|
+
version: 0.0.17
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jeremy Deininger
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-02-
|
|
18
|
+
date: 2011-02-09 00:00:00 -08:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -85,6 +85,7 @@ files:
|
|
|
85
85
|
- lib/rest_connection.rb
|
|
86
86
|
- lib/rest_connection/rightscale/alert_spec.rb
|
|
87
87
|
- lib/rest_connection/rightscale/audit_entry.rb
|
|
88
|
+
- lib/rest_connection/rightscale/credential.rb
|
|
88
89
|
- lib/rest_connection/rightscale/deployment.rb
|
|
89
90
|
- lib/rest_connection/rightscale/ec2_ebs_snapshot.rb
|
|
90
91
|
- lib/rest_connection/rightscale/ec2_ebs_volume.rb
|