megam_api 1.5.rc3 → 1.5.rc5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 84355616466a199bfaa204d9541505476917eec9
4
- data.tar.gz: c76351b0c22edb2082520b5a3cbb5530d8e7a56d
3
+ metadata.gz: 36a30bf1bc0e9b03c744277196d0c829c485fe70
4
+ data.tar.gz: 89423a737d762feb9f0d4886fb35a434bf0d176d
5
5
  SHA512:
6
- metadata.gz: 1a748368c58ee56525c34d68e09800227a60f1ca765c8ad387aa4a0557010a94957f276e8be87a2b80ed4a455a5fd3525b1176d9f1354ee56860445bc0432b87
7
- data.tar.gz: 933493abb83af5fc57177923a5a3bb86b05fc89a1468ec393c93d52d7bf46867b1bc303c8d5162ef4b8d1a0e0aada861977b517960a92ef4fcfd7786eee16af0
6
+ metadata.gz: d712cb98100ba4f57f711908eb64bf85fa371548aa2401e3bd64f9aaee102401a911f60bf678422d032fe37e39c320dfc6f6972068c431e8ba4404eb01e7758f
7
+ data.tar.gz: bbbe92e3d16efd02a14ae51e3f0e361068a164f0a10aae75c9e60ce16c2979e8aec18ce4a4b2c611bc13bef901ff264a26409e52fb14d3c6e5c4da3e2f9a1a9e
data/README.md CHANGED
@@ -1,11 +1,9 @@
1
- Vertice api for ruby
1
+ Ruby API for Vertice
2
2
  =====================
3
3
 
4
4
  [![Gem Version](https://badge.fury.io/rb/megam_api.svg)](http://badge.fury.io/rb/megam_api)
5
5
 
6
- Vertice api is used to talk to the vertice gateway server.
7
-
8
- For more about the REST API <http://docs.megam.io>
6
+ This is a Ruby SDK API for Vertice that talks REST to our Vertice gateway.
9
7
 
10
8
  [![Build Status](https://travis-ci.org/megamsys/megam_api.png)](https://travis-ci.org/megamsys/megam_api)
11
9
 
@@ -31,12 +29,8 @@ We are glad to help if you have questions, or request for new features..
31
29
 
32
30
  | | |
33
31
  |:---------------------|:-----------------------------------------|
34
- | **Author:** | Kishorekumar Neelamegam (<nkishore@megam.io>)
35
- | | Raj Thilak (<rajthilak@megam.io>)
36
- | | Yeshwanth Kumar (<getyesh@megam.io>)
37
- | | Subash Sethurajan (<subash.avc@gmail.com>)
38
- | | Thomas Alrin (<thomasalrin@megam.io>)
39
- | **Copyright:** | Copyright (c) 2013-2015 Megam Systems.
32
+ | **Author:** | Refer [https://rubygems.org/gems/megam_api](https://rubygems.org/gems/megam_api)
33
+ | **Copyright:** | Copyright (c) 2013-2016 Megam Systems.
40
34
  | **License:** | Apache License, Version 2.0
41
35
 
42
36
  Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,6 +15,6 @@
15
15
  #
16
16
  module Megam
17
17
  class API
18
- VERSION = "1.5.rc3"
18
+ VERSION = "1.5.rc5"
19
19
  end
20
20
  end
@@ -62,7 +62,8 @@ module Megam
62
62
  include Nilavu::MegamAttributes
63
63
 
64
64
  attr_reader :domain, :keypairoption, :sshkey, :provider, :cpu, :ram, :hdd,
65
- :version, :display_name, :password, :region, :resource, :storagetype, :ipv6, :privnetwork
65
+ :version, :display_name, :password, :region, :resource, :storage_hddtype,
66
+ :ipv4public, :ipv4private, :ipv6public, :ipv6private
66
67
 
67
68
  ATTRIBUTES = [
68
69
  :domain,
@@ -77,9 +78,11 @@ module Megam
77
78
  :password,
78
79
  :region,
79
80
  :resource,
80
- :storagetype,
81
- :ipv6,
82
- :privnetwork]
81
+ :storage_hddtype,
82
+ :ipv4private,
83
+ :ipv4public,
84
+ :ipv6private,
85
+ :ipv6public]
83
86
 
84
87
  def attributes
85
88
  ATTRIBUTES
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 = ["Rajthilak, Kishorekumar Neelamegam, Thomas Alrin, Yeshwanth Kumar, Subash Sethurajan, Arunkumar sekar, Ranjitha R"]
9
- s.email = ["rajthilak@megam.io","nkishore@megam.io","thomasalrin@megam.io","getyesh@megam.io","subash.avc@gmail.com","arunkumar.sekar@megam.io, ranjithar@megam.io"]
8
+ s.authors = ["Rajthilak, Kishorekumar Neelamegam, Ranjitha R, Rajesh Rajagopalan, Thomas Alrin, Yeshwanth Kumar, Subash Sethurajan, Arunkumar sekar"]
9
+ s.email = ["rajthilak@megam.io","nkishore@megam.io","ranjithar@megam.io","rajeshr@megam.io","thomasalrin@megam.io","getyesh@megam.io","subash.avc@gmail.com","arunkumar.sekar@megam.io"]
10
10
  s.homepage = "http://github.com/megamsys/megam_api"
11
11
  s.license = "Apache-2.0"
12
12
  s.extra_rdoc_files = ["README.md", "LICENSE" ]
@@ -16,11 +16,11 @@ Gem::Specification.new do |s|
16
16
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
17
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
18
  s.require_paths = ["lib"]
19
- s.add_runtime_dependency 'excon', '~> 0.49.0'
19
+ s.add_runtime_dependency 'excon', '~> 0.51.0'
20
20
  s.add_runtime_dependency 'highline', '~> 1.7'
21
21
  s.add_runtime_dependency 'ffi-yajl', '~> 2.2'
22
22
  s.add_runtime_dependency 'mixlib-config', '~> 2.2'
23
23
  s.add_runtime_dependency 'mixlib-log', '~> 1.6'
24
- s.add_development_dependency 'minitest', '~> 5.8'
25
- s.add_development_dependency 'rake', '~> 10.5'
24
+ s.add_development_dependency 'minitest', '~> 5.9'
25
+ s.add_development_dependency 'rake', '~> 11.2'
26
26
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: megam_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.rc3
4
+ version: 1.5.rc5
5
5
  platform: ruby
6
6
  authors:
7
- - Rajthilak, Kishorekumar Neelamegam, Thomas Alrin, Yeshwanth Kumar, Subash Sethurajan,
8
- Arunkumar sekar, Ranjitha R
7
+ - Rajthilak, Kishorekumar Neelamegam, Ranjitha R, Rajesh Rajagopalan, Thomas Alrin,
8
+ Yeshwanth Kumar, Subash Sethurajan, Arunkumar sekar
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-06-28 00:00:00.000000000 Z
12
+ date: 2016-07-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: excon
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 0.49.0
20
+ version: 0.51.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 0.49.0
27
+ version: 0.51.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: highline
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -87,37 +87,39 @@ dependencies:
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: '5.8'
90
+ version: '5.9'
91
91
  type: :development
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: '5.8'
97
+ version: '5.9'
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: rake
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
102
  - - "~>"
103
103
  - !ruby/object:Gem::Version
104
- version: '10.5'
104
+ version: '11.2'
105
105
  type: :development
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - "~>"
110
110
  - !ruby/object:Gem::Version
111
- version: '10.5'
111
+ version: '11.2'
112
112
  description: Ruby Client for the Megam vertice platform. Performs REST calls to Vertice
113
113
  Gateway - http://github.com/megamsys/vertice_gateway.git
114
114
  email:
115
115
  - rajthilak@megam.io
116
116
  - nkishore@megam.io
117
+ - ranjithar@megam.io
118
+ - rajeshr@megam.io
117
119
  - thomasalrin@megam.io
118
120
  - getyesh@megam.io
119
121
  - subash.avc@gmail.com
120
- - arunkumar.sekar@megam.io, ranjithar@megam.io
122
+ - arunkumar.sekar@megam.io
121
123
  executables: []
122
124
  extensions: []
123
125
  extra_rdoc_files: