megam_api 0.34 → 0.35
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/components.rb +10 -0
- metadata +20 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aae6629f953f8f7bd92fac453843fb32cbe38af2
|
|
4
|
+
data.tar.gz: f0d6668fed5fd78cea8101d41248d4664697ad22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2337896a7037f7488409e38574cd5b25591bad2d2a2c19b453992ea4c1b6aec9e3428edebe2241f64b2a4aec05028ee8d670fe99b1943867a7de46bfc22d3e66
|
|
7
|
+
data.tar.gz: b64275323798bfa8e5e60311ce1f9bad7076e7553561898084c6bcde7cbb911fd6af14916927ca6cc1638b9834a2dfb7a8a6d3eff92a4c3dcd1f138e4781db67
|
data/lib/megam/api/version.rb
CHANGED
|
@@ -36,6 +36,7 @@ module Megam
|
|
|
36
36
|
@z = nil
|
|
37
37
|
@wires = []
|
|
38
38
|
@service_inputs = nil
|
|
39
|
+
@ci_id = nil
|
|
39
40
|
@dbname = nil
|
|
40
41
|
@dbpassword = nil
|
|
41
42
|
@external_management_resource = nil
|
|
@@ -208,6 +209,14 @@ module Megam
|
|
|
208
209
|
@service_inputs
|
|
209
210
|
end
|
|
210
211
|
end
|
|
212
|
+
|
|
213
|
+
def ci_id(arg=nil)
|
|
214
|
+
if arg != nil
|
|
215
|
+
@ci_id = arg
|
|
216
|
+
else
|
|
217
|
+
@ci_id
|
|
218
|
+
end
|
|
219
|
+
end
|
|
211
220
|
|
|
212
221
|
def dbname(arg=nil)
|
|
213
222
|
if arg != nil
|
|
@@ -377,6 +386,7 @@ module Megam
|
|
|
377
386
|
asm.inputs[:source] = inp["source"] if inp && inp.has_key?("source")
|
|
378
387
|
asm.inputs[:design_inputs] = inp["design_inputs"] if inp && inp.has_key?("design_inputs")
|
|
379
388
|
asm.inputs[:service_inputs] = inp["service_inputs"] if inp && inp.has_key?("service_inputs")
|
|
389
|
+
asm.inputs[:ci_id] = inp["ci_id"] if inp && inp.has_key?("ci_id")
|
|
380
390
|
# ind = inp["design_inputs"]
|
|
381
391
|
# asm.inputs["design_inputs"][:did] = ind["did"] if ind && ind.has_key?("did")
|
|
382
392
|
# asm.inputs[:design_inputs][:x] = ind["x"] if ind && ind.has_key?("x")
|
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.35'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rajthilak, Kishorekumar Neelamegam, Thomas Alrin, Yeshwanth Kumar, Subash Sethurajan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-03-
|
|
11
|
+
date: 2015-03-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: excon
|
|
@@ -227,4 +227,21 @@ rubygems_version: 2.4.6
|
|
|
227
227
|
signing_key:
|
|
228
228
|
specification_version: 4
|
|
229
229
|
summary: Ruby Client for the Megam
|
|
230
|
-
test_files:
|
|
230
|
+
test_files:
|
|
231
|
+
- test/test_accounts.rb
|
|
232
|
+
- test/test_app_requests.rb
|
|
233
|
+
- test/test_assemblies.rb
|
|
234
|
+
- test/test_assembly.rb
|
|
235
|
+
- test/test_cloudtoolsettings.rb
|
|
236
|
+
- test/test_components.rb
|
|
237
|
+
- test/test_csars.rb
|
|
238
|
+
- test/test_domains.rb
|
|
239
|
+
- test/test_helper.rb
|
|
240
|
+
- test/test_login.rb
|
|
241
|
+
- test/test_logs.rb
|
|
242
|
+
- test/test_marketplaceaddons.rb
|
|
243
|
+
- test/test_marketplaces.rb
|
|
244
|
+
- test/test_organizations.rb
|
|
245
|
+
- test/test_predefclouds.rb
|
|
246
|
+
- test/test_requests.rb
|
|
247
|
+
- test/test_sshkeys.rb
|