megam_api 0.3.0 → 0.4.0
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.
- checksums.yaml +4 -4
- data/lib/megam/api/version.rb +1 -1
- data/lib/megam/core/predefcloud.rb +1 -0
- data/megam_api.gemspec +2 -2
- data/test/test_nodes.rb +1 -0
- data/test/test_predefclouds.rb +2 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68e28bd9b304d359aaa8274a0fa9fcc03f049c55
|
|
4
|
+
data.tar.gz: 1c5990d18bbb16555b4153c69c4e0a13571e0c5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 226448ce094c14f5374ed435cb1c91817110f930a7d88be9f1454efb7fa337f710c854b4188ba79635f491f2e3a0bf8674600b108741b48f2ad2767e6ea5f0eb
|
|
7
|
+
data.tar.gz: cac68e95580f3200224f2629bf918f84a05c0a4f6a76670d629c32c4e6659db9890016c3eb009aa554936ada4434c294c13ec6691696e32da7fa811f52486dd5
|
data/lib/megam/api/version.rb
CHANGED
|
@@ -166,6 +166,7 @@ module Megam
|
|
|
166
166
|
predefcd.access[:identity_file] = op["identity_file"] if op && op.has_key?("identity_file")
|
|
167
167
|
predefcd.access[:ssh_user]= op["ssh_user"] if op && op.has_key?("ssh_user")
|
|
168
168
|
predefcd.access[:vault_location]= op["vault_location"] if op && op.has_key?("vault_location")
|
|
169
|
+
predefcd.access[:sshpub_location]= op["sshpub_location"] if op && op.has_key?("sshpub_location")
|
|
169
170
|
#access
|
|
170
171
|
# predefcd.ideal(o["ideal"]) if o.has_key?("ideal")
|
|
171
172
|
# predefcd.performance(o["performance"]) if o.has_key?("performance")
|
data/megam_api.gemspec
CHANGED
|
@@ -5,8 +5,8 @@ require "megam/api/version"
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "megam_api"
|
|
7
7
|
s.version = Megam::API::VERSION
|
|
8
|
-
s.authors = ["Kishorekumar Neelamegam, Thomas Alrin, Subash Sethurajan"]
|
|
9
|
-
s.email = ["nkishore@megam.co.in","alrin@megam.co.in","subash.avc@gmail.com"]
|
|
8
|
+
s.authors = ["Kishorekumar Neelamegam, Thomas Alrin, Subash Sethurajan, Rajthilak"]
|
|
9
|
+
s.email = ["nkishore@megam.co.in","alrin@megam.co.in","subash.avc@gmail.com", "rajthilak@megam.co.in"]
|
|
10
10
|
s.homepage = "http://github.com/indykish/megam_api"
|
|
11
11
|
s.license = "Apache V2"
|
|
12
12
|
sextra_rdoc_files = ["README.md", "LICENSE" ]
|
data/test/test_nodes.rb
CHANGED
|
@@ -22,6 +22,7 @@ class TestApps < MiniTest::Unit::TestCase
|
|
|
22
22
|
"identity_file" => "~/.ssh/megam_ec2.pem",
|
|
23
23
|
"ssh_user" => "ubuntu",
|
|
24
24
|
"vault_location" => "https://s3-ap-southeast-1.amazonaws.com/cloudkeys/sandy@megamsandbox.com/default"
|
|
25
|
+
"sshpub_location" => "https://s3-ap-southeast-1.amazonaws.com/cloudkeys/sandy@megamsandbox.com/default"
|
|
25
26
|
}
|
|
26
27
|
},
|
|
27
28
|
"cloudtool" => {
|
data/test/test_predefclouds.rb
CHANGED
|
@@ -14,6 +14,7 @@ class TestApps < MiniTest::Unit::TestCase
|
|
|
14
14
|
:identity_file => "~/.ssh/megam_ec2.pem",
|
|
15
15
|
:ssh_user => "ubuntu",
|
|
16
16
|
:vault_location => "https://s3-ap-southeast-1.amazonaws.com/cloudkeys/sandy@megamsandbox.com/default"
|
|
17
|
+
:sshpub_location => "https://s3-ap-southeast-1.amazonaws.com/cloudkeys/sandy@megamsandbox.com/default"
|
|
17
18
|
},
|
|
18
19
|
:ideal => "ror,redis,riak",
|
|
19
20
|
:performance => "10rpm"
|
|
@@ -35,6 +36,7 @@ class TestApps < MiniTest::Unit::TestCase
|
|
|
35
36
|
:identity_file => "https://boering.dropbox.closedloc/aorc.pem",
|
|
36
37
|
:ssh_user => "ubuntu",
|
|
37
38
|
:vault_location => "https://s3-ap-southeast-1.amazonaws.com/cloudkeys/sandy@megamsandbox.com/default"
|
|
39
|
+
:sshpub_location => "https://s3-ap-southeast-1.amazonaws.com/cloudkeys/sandy@megamsandbox.com/default"
|
|
38
40
|
},
|
|
39
41
|
:ideal => "play,redis,riak",
|
|
40
42
|
:performance => "10rpm"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: megam_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Kishorekumar Neelamegam, Thomas Alrin, Subash Sethurajan
|
|
7
|
+
- Kishorekumar Neelamegam, Thomas Alrin, Subash Sethurajan, Rajthilak
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-11-
|
|
11
|
+
date: 2013-11-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: excon
|
|
@@ -114,6 +114,7 @@ email:
|
|
|
114
114
|
- nkishore@megam.co.in
|
|
115
115
|
- alrin@megam.co.in
|
|
116
116
|
- subash.avc@gmail.com
|
|
117
|
+
- rajthilak@megam.co.in
|
|
117
118
|
executables: []
|
|
118
119
|
extensions: []
|
|
119
120
|
extra_rdoc_files: []
|
|
@@ -206,7 +207,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
206
207
|
version: '0'
|
|
207
208
|
requirements: []
|
|
208
209
|
rubyforge_project:
|
|
209
|
-
rubygems_version: 2.
|
|
210
|
+
rubygems_version: 2.1.11
|
|
210
211
|
signing_key:
|
|
211
212
|
specification_version: 4
|
|
212
213
|
summary: Ruby Client for the Megam Cloud
|