vmc 0.3.12 → 0.3.13.beta.1

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.
Files changed (58) hide show
  1. data/lib/cli/commands/apps.rb +29 -5
  2. data/lib/cli/commands/misc.rb +1 -1
  3. data/lib/cli/commands/user.rb +1 -1
  4. data/lib/cli/config.rb +25 -8
  5. data/lib/cli/frameworks.rb +25 -5
  6. data/lib/cli/version.rb +1 -1
  7. data/lib/vmc/client.rb +6 -2
  8. data/spec/assets/grails/grails.war +0 -0
  9. data/spec/assets/java_web/java_web.war +0 -0
  10. data/spec/assets/lift/lift.war +0 -0
  11. data/spec/assets/node/app.js +16 -0
  12. data/spec/assets/rails3/Gemfile +8 -0
  13. data/spec/assets/rails3/README +256 -0
  14. data/spec/assets/rails3/Rakefile +7 -0
  15. data/spec/assets/rails3/app/controllers/application_controller.rb +3 -0
  16. data/spec/assets/rails3/app/controllers/root_controller.rb +13 -0
  17. data/spec/assets/rails3/app/helpers/application_helper.rb +2 -0
  18. data/spec/assets/rails3/app/helpers/root_helper.rb +2 -0
  19. data/spec/assets/rails3/app/models/widget.rb +2 -0
  20. data/spec/assets/rails3/app/views/layouts/application.html.erb +11 -0
  21. data/spec/assets/rails3/app/views/root/index.html.erb +5 -0
  22. data/spec/assets/rails3/config.ru +4 -0
  23. data/spec/assets/rails3/config/application.rb +42 -0
  24. data/spec/assets/rails3/config/boot.rb +13 -0
  25. data/spec/assets/rails3/config/database.yml +12 -0
  26. data/spec/assets/rails3/config/environment.rb +5 -0
  27. data/spec/assets/rails3/config/environments/development.rb +26 -0
  28. data/spec/assets/rails3/config/environments/production.rb +49 -0
  29. data/spec/assets/rails3/config/environments/test.rb +35 -0
  30. data/spec/assets/rails3/config/initializers/backtrace_silencers.rb +7 -0
  31. data/spec/assets/rails3/config/initializers/inflections.rb +10 -0
  32. data/spec/assets/rails3/config/initializers/mime_types.rb +5 -0
  33. data/spec/assets/rails3/config/initializers/secret_token.rb +7 -0
  34. data/spec/assets/rails3/config/initializers/session_store.rb +8 -0
  35. data/spec/assets/rails3/config/locales/en.yml +5 -0
  36. data/spec/assets/rails3/config/routes.rb +61 -0
  37. data/spec/assets/rails3/db/migrate/20101108182500_create_widgets.rb +13 -0
  38. data/spec/assets/rails3/db/schema.rb +21 -0
  39. data/spec/assets/rails3/db/seeds.rb +7 -0
  40. data/spec/assets/rails3/public/404.html +26 -0
  41. data/spec/assets/rails3/public/422.html +26 -0
  42. data/spec/assets/rails3/public/500.html +26 -0
  43. data/spec/assets/rails3/public/favicon.ico +0 -0
  44. data/spec/assets/rails3/public/images/rails.png +0 -0
  45. data/spec/assets/rails3/public/javascripts/application.js +0 -0
  46. data/spec/assets/rails3/public/robots.txt +5 -0
  47. data/spec/assets/rails3/script/rails +6 -0
  48. data/spec/assets/rails3/test/functional/root_controller_test.rb +14 -0
  49. data/spec/assets/rails3/test/performance/browsing_test.rb +9 -0
  50. data/spec/assets/rails3/test/test_helper.rb +13 -0
  51. data/spec/assets/rails3/test/unit/helpers/root_helper_test.rb +4 -0
  52. data/spec/assets/rails3/test/unit/widget_test.rb +12 -0
  53. data/spec/assets/service_gateway_fail.txt +9 -0
  54. data/spec/assets/sinatra/foo.rb +13 -0
  55. data/spec/assets/spring/spring.war +0 -0
  56. data/spec/unit/client_spec.rb +13 -0
  57. data/spec/unit/frameworks_spec.rb +75 -0
  58. metadata +130 -77
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,14 @@
1
+ require 'test_helper'
2
+
3
+ class RootControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ test "should save a widget" do
10
+ get :make_widget, :name => 'my widget'
11
+ assert_response :success
12
+ assert_equal 'Saved my widget', response.body
13
+ end
14
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+ require 'rails/performance_test_help'
3
+
4
+ # Profiling results for each test method are written to tmp/performance.
5
+ class BrowsingTest < ActionDispatch::PerformanceTest
6
+ def test_homepage
7
+ get '/'
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7
+ #
8
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
+ # -- they do not yet inherit this setting
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class RootHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,12 @@
1
+ require 'test_helper'
2
+
3
+ class WidgetTest < ActiveSupport::TestCase
4
+ def new_widget
5
+ Widget.new :name => "test widget"
6
+ end
7
+
8
+ test "Widget creation" do
9
+ assert new_widget.save, "expected a new widget to be valid"
10
+ assert_equal 1, Widget.count
11
+ end
12
+ end
@@ -0,0 +1,9 @@
1
+ HTTP/1.1 502 Bad Gateway
2
+ Server : nginx/0.8.54
3
+ Date : Tue, 16 Aug 2011 20:54:51 GMT
4
+ Content_type : application/json; charset=utf-8
5
+ Connection : keep-alive
6
+ Keep-Alive: timeout=20
7
+ Content-Length: 68
8
+
9
+ {"code":503,"description":"Unexpected response from service gateway"}
@@ -0,0 +1,13 @@
1
+ require 'rubygems'
2
+ require 'sinatra'
3
+
4
+ get '/' do
5
+ host = ENV['VMC_APP_HOST']
6
+ port = ENV['VMC_APP_PORT']
7
+ "<h1>Hello from VCAP! via: #{host}:#{port}</h1>"
8
+ end
9
+
10
+ get '/crash/:id' do
11
+ ps = "kill -9 #{params[:id]}"
12
+ Kernel.`ps
13
+ end
Binary file
@@ -327,6 +327,19 @@ describe 'VMC::Client' do
327
327
  RestClient.proxy.should == proxy
328
328
  end
329
329
 
330
+ it 'should fail when there is a service gateway failure' do
331
+ info_path = "#{@local_target}#{VMC::INFO_PATH}"
332
+ stub_request(:get, info_path).to_return(File.new(spec_asset('info_authenticated.txt')))
333
+ global_services_path = "#{@local_target}#{VMC::GLOBAL_SERVICES_PATH}"
334
+ stub_request(:get, global_services_path).to_return(File.new(spec_asset('global_service_listings.txt')))
335
+ services_path = "#{@local_target}#{VMC::SERVICES_PATH}"
336
+ # A service gateway failure will typically happen when provisioning a new service instance -
337
+ # e.g. provisioning too many instances of mysql service.
338
+ stub_request(:post, services_path).to_return(File.new(spec_asset('service_gateway_fail.txt')))
339
+ client = VMC::Client.new(@local_target, @auth_token)
340
+ expect { client.create_service('mysql', 'foo') }.to raise_error(VMC::Client::TargetError)
341
+ end
342
+
330
343
  # WebMock.allow_net_connect!
331
344
 
332
345
  end
@@ -0,0 +1,75 @@
1
+ require 'spec_helper'
2
+ require 'tmpdir'
3
+
4
+ describe 'VMC::Cli::Framework' do
5
+
6
+ before(:each) do
7
+ VMC::Cli::Config.nozip = true
8
+ end
9
+
10
+ it 'should be able to detect a Java web app war' do
11
+ app = spec_asset('java_web')
12
+ framework(app).should =~ /Java Web/
13
+ end
14
+
15
+ it 'should be able to detect an exploded Java web app' do
16
+ war_file = spec_asset('java_web/java_web.war')
17
+ framework(war_file, true).should =~ /Java Web/
18
+ end
19
+
20
+ it 'should be able to detect a Spring web app war' do
21
+ app = spec_asset('spring')
22
+ framework(app).should =~ /Spring/
23
+ end
24
+
25
+ it 'should be able to detect an exploded Spring web app' do
26
+ war_file = spec_asset('spring/spring.war')
27
+ framework(war_file, true).should =~ /Spring/
28
+ end
29
+
30
+ it 'should be able to detect a Lift web app war' do
31
+ app = spec_asset('lift')
32
+ framework(app).should =~ /Lift/
33
+ end
34
+
35
+ it 'should be able to detect an exploded Lift web app' do
36
+ war_file = spec_asset('lift/lift.war')
37
+ framework(war_file, true).should =~ /Lift/
38
+ end
39
+
40
+ it 'should be able to detect a Grails web app war' do
41
+ app = spec_asset('grails')
42
+ framework(app).should =~ /Grails/
43
+ end
44
+
45
+ it 'should be able to detect an exploded Grails web app' do
46
+ war_file = spec_asset('grails/grails.war')
47
+ framework(war_file, true).should =~ /Grails/
48
+ end
49
+
50
+ it 'should be able to detect a Rails3 app' do
51
+ app = spec_asset('rails3')
52
+ framework(app).should =~ /Rails/
53
+ end
54
+
55
+ it 'should be able to detect a Sinatra app' do
56
+ app = spec_asset('sinatra')
57
+ framework(app).should =~ /Sinatra/
58
+ end
59
+
60
+ it 'should be able to detect a Node.js app' do
61
+ app = spec_asset('node')
62
+ framework(app).should=~ /Node.js/
63
+ end
64
+
65
+ def framework app, explode=false
66
+ unless explode == true
67
+ return VMC::Cli::Framework.detect(app).to_s
68
+ end
69
+ Dir.mktmpdir {|dir|
70
+ exploded_dir = File.join(dir, "exploded")
71
+ VMC::Cli::ZipUtil.unpack(app, exploded_dir)
72
+ VMC::Cli::Framework.detect(exploded_dir).to_s
73
+ }
74
+ end
75
+ end
metadata CHANGED
@@ -1,118 +1,119 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: vmc
3
- version: !ruby/object:Gem::Version
4
- version: 0.3.12
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: 7
5
+ version: 0.3.13.beta.1
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - VMware
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-07-12 00:00:00.000000000 -05:00
12
+
13
+ date: 2011-08-22 00:00:00 -07:00
13
14
  default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
16
17
  name: json_pure
17
- requirement: &2160775700 !ruby/object:Gem::Requirement
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
18
20
  none: false
19
- requirements:
21
+ requirements:
20
22
  - - ~>
21
- - !ruby/object:Gem::Version
23
+ - !ruby/object:Gem::Version
22
24
  version: 1.5.1
23
25
  type: :runtime
24
- prerelease: false
25
- version_requirements: *2160775700
26
- - !ruby/object:Gem::Dependency
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
27
28
  name: rubyzip2
28
- requirement: &2160775200 !ruby/object:Gem::Requirement
29
+ prerelease: false
30
+ requirement: &id002 !ruby/object:Gem::Requirement
29
31
  none: false
30
- requirements:
32
+ requirements:
31
33
  - - ~>
32
- - !ruby/object:Gem::Version
34
+ - !ruby/object:Gem::Version
33
35
  version: 2.0.1
34
36
  type: :runtime
35
- prerelease: false
36
- version_requirements: *2160775200
37
- - !ruby/object:Gem::Dependency
37
+ version_requirements: *id002
38
+ - !ruby/object:Gem::Dependency
38
39
  name: highline
39
- requirement: &2160774680 !ruby/object:Gem::Requirement
40
+ prerelease: false
41
+ requirement: &id003 !ruby/object:Gem::Requirement
40
42
  none: false
41
- requirements:
43
+ requirements:
42
44
  - - ~>
43
- - !ruby/object:Gem::Version
45
+ - !ruby/object:Gem::Version
44
46
  version: 1.6.1
45
47
  type: :runtime
46
- prerelease: false
47
- version_requirements: *2160774680
48
- - !ruby/object:Gem::Dependency
48
+ version_requirements: *id003
49
+ - !ruby/object:Gem::Dependency
49
50
  name: rest-client
50
- requirement: &2160774120 !ruby/object:Gem::Requirement
51
+ prerelease: false
52
+ requirement: &id004 !ruby/object:Gem::Requirement
51
53
  none: false
52
- requirements:
53
- - - ! '>='
54
- - !ruby/object:Gem::Version
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
55
57
  version: 1.6.1
56
58
  - - <
57
- - !ruby/object:Gem::Version
59
+ - !ruby/object:Gem::Version
58
60
  version: 1.7.0
59
61
  type: :runtime
60
- prerelease: false
61
- version_requirements: *2160774120
62
- - !ruby/object:Gem::Dependency
62
+ version_requirements: *id004
63
+ - !ruby/object:Gem::Dependency
63
64
  name: terminal-table
64
- requirement: &2160773380 !ruby/object:Gem::Requirement
65
+ prerelease: false
66
+ requirement: &id005 !ruby/object:Gem::Requirement
65
67
  none: false
66
- requirements:
68
+ requirements:
67
69
  - - ~>
68
- - !ruby/object:Gem::Version
70
+ - !ruby/object:Gem::Version
69
71
  version: 1.4.2
70
72
  type: :runtime
71
- prerelease: false
72
- version_requirements: *2160773380
73
- - !ruby/object:Gem::Dependency
73
+ version_requirements: *id005
74
+ - !ruby/object:Gem::Dependency
74
75
  name: rake
75
- requirement: &2160772980 !ruby/object:Gem::Requirement
76
+ prerelease: false
77
+ requirement: &id006 !ruby/object:Gem::Requirement
76
78
  none: false
77
- requirements:
78
- - - ! '>='
79
- - !ruby/object:Gem::Version
80
- version: '0'
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: "0"
81
83
  type: :development
82
- prerelease: false
83
- version_requirements: *2160772980
84
- - !ruby/object:Gem::Dependency
84
+ version_requirements: *id006
85
+ - !ruby/object:Gem::Dependency
85
86
  name: rspec
86
- requirement: &2160772400 !ruby/object:Gem::Requirement
87
+ prerelease: false
88
+ requirement: &id007 !ruby/object:Gem::Requirement
87
89
  none: false
88
- requirements:
90
+ requirements:
89
91
  - - ~>
90
- - !ruby/object:Gem::Version
92
+ - !ruby/object:Gem::Version
91
93
  version: 1.3.0
92
94
  type: :development
93
- prerelease: false
94
- version_requirements: *2160772400
95
- - !ruby/object:Gem::Dependency
95
+ version_requirements: *id007
96
+ - !ruby/object:Gem::Dependency
96
97
  name: webmock
97
- requirement: &2160771840 !ruby/object:Gem::Requirement
98
+ prerelease: false
99
+ requirement: &id008 !ruby/object:Gem::Requirement
98
100
  none: false
99
- requirements:
101
+ requirements:
100
102
  - - ~>
101
- - !ruby/object:Gem::Version
103
+ - !ruby/object:Gem::Version
102
104
  version: 1.5.0
103
105
  type: :development
104
- prerelease: false
105
- version_requirements: *2160771840
106
- description: Client library and CLI that provides access to the VMware Cloud Application
107
- Platform.
106
+ version_requirements: *id008
107
+ description: Client library and CLI that provides access to the VMware Cloud Application Platform.
108
108
  email: support@vmware.com
109
- executables:
109
+ executables:
110
110
  - vmc
111
111
  extensions: []
112
- extra_rdoc_files:
112
+
113
+ extra_rdoc_files:
113
114
  - README.md
114
115
  - LICENSE
115
- files:
116
+ files:
116
117
  - LICENSE
117
118
  - README.md
118
119
  - Rakefile
@@ -142,45 +143,97 @@ files:
142
143
  - spec/assets/global_service_listings.txt
143
144
  - spec/assets/good_create_app.txt
144
145
  - spec/assets/good_create_service.txt
146
+ - spec/assets/grails/grails.war
145
147
  - spec/assets/info_authenticated.txt
146
148
  - spec/assets/info_return.txt
147
149
  - spec/assets/info_return_bad.txt
150
+ - spec/assets/java_web/java_web.war
151
+ - spec/assets/lift/lift.war
148
152
  - spec/assets/list_users.txt
149
153
  - spec/assets/login_fail.txt
150
154
  - spec/assets/login_success.txt
155
+ - spec/assets/node/app.js
156
+ - spec/assets/rails3/app/controllers/application_controller.rb
157
+ - spec/assets/rails3/app/controllers/root_controller.rb
158
+ - spec/assets/rails3/app/helpers/application_helper.rb
159
+ - spec/assets/rails3/app/helpers/root_helper.rb
160
+ - spec/assets/rails3/app/models/widget.rb
161
+ - spec/assets/rails3/app/views/layouts/application.html.erb
162
+ - spec/assets/rails3/app/views/root/index.html.erb
163
+ - spec/assets/rails3/config/application.rb
164
+ - spec/assets/rails3/config/boot.rb
165
+ - spec/assets/rails3/config/database.yml
166
+ - spec/assets/rails3/config/environment.rb
167
+ - spec/assets/rails3/config/environments/development.rb
168
+ - spec/assets/rails3/config/environments/production.rb
169
+ - spec/assets/rails3/config/environments/test.rb
170
+ - spec/assets/rails3/config/initializers/backtrace_silencers.rb
171
+ - spec/assets/rails3/config/initializers/inflections.rb
172
+ - spec/assets/rails3/config/initializers/mime_types.rb
173
+ - spec/assets/rails3/config/initializers/secret_token.rb
174
+ - spec/assets/rails3/config/initializers/session_store.rb
175
+ - spec/assets/rails3/config/locales/en.yml
176
+ - spec/assets/rails3/config/routes.rb
177
+ - spec/assets/rails3/config.ru
178
+ - spec/assets/rails3/db/migrate/20101108182500_create_widgets.rb
179
+ - spec/assets/rails3/db/schema.rb
180
+ - spec/assets/rails3/db/seeds.rb
181
+ - spec/assets/rails3/Gemfile
182
+ - spec/assets/rails3/public/404.html
183
+ - spec/assets/rails3/public/422.html
184
+ - spec/assets/rails3/public/500.html
185
+ - spec/assets/rails3/public/favicon.ico
186
+ - spec/assets/rails3/public/images/rails.png
187
+ - spec/assets/rails3/public/javascripts/application.js
188
+ - spec/assets/rails3/public/robots.txt
189
+ - spec/assets/rails3/Rakefile
190
+ - spec/assets/rails3/README
191
+ - spec/assets/rails3/script/rails
192
+ - spec/assets/rails3/test/functional/root_controller_test.rb
193
+ - spec/assets/rails3/test/performance/browsing_test.rb
194
+ - spec/assets/rails3/test/test_helper.rb
195
+ - spec/assets/rails3/test/unit/helpers/root_helper_test.rb
196
+ - spec/assets/rails3/test/unit/widget_test.rb
151
197
  - spec/assets/sample_token.txt
152
198
  - spec/assets/service_already_exists.txt
199
+ - spec/assets/service_gateway_fail.txt
153
200
  - spec/assets/service_listings.txt
154
201
  - spec/assets/service_not_found.txt
202
+ - spec/assets/sinatra/foo.rb
203
+ - spec/assets/spring/spring.war
155
204
  - spec/assets/user_info.txt
156
205
  - spec/spec_helper.rb
157
206
  - spec/unit/cli_opts_spec.rb
158
207
  - spec/unit/client_spec.rb
208
+ - spec/unit/frameworks_spec.rb
159
209
  - bin/vmc
160
210
  has_rdoc: true
161
211
  homepage: http://vmware.com
162
212
  licenses: []
213
+
163
214
  post_install_message:
164
215
  rdoc_options: []
165
- require_paths:
216
+
217
+ require_paths:
166
218
  - lib
167
- required_ruby_version: !ruby/object:Gem::Requirement
219
+ required_ruby_version: !ruby/object:Gem::Requirement
168
220
  none: false
169
- requirements:
170
- - - ! '>='
171
- - !ruby/object:Gem::Version
172
- version: '0'
173
- required_rubygems_version: !ruby/object:Gem::Requirement
221
+ requirements:
222
+ - - ">="
223
+ - !ruby/object:Gem::Version
224
+ version: "0"
225
+ required_rubygems_version: !ruby/object:Gem::Requirement
174
226
  none: false
175
- requirements:
176
- - - ! '>='
177
- - !ruby/object:Gem::Version
178
- version: '0'
227
+ requirements:
228
+ - - ">"
229
+ - !ruby/object:Gem::Version
230
+ version: 1.3.1
179
231
  requirements: []
232
+
180
233
  rubyforge_project:
181
234
  rubygems_version: 1.6.2
182
235
  signing_key:
183
236
  specification_version: 3
184
- summary: Client library and CLI that provides access to the VMware Cloud Application
185
- Platform.
237
+ summary: Client library and CLI that provides access to the VMware Cloud Application Platform.
186
238
  test_files: []
239
+