GithubHelp home page GithubHelp logo

vcloud-rest's Introduction

vcloud-rest

Build Status Dependency Status Coverage Status

DESCRIPTION

Unofficial ruby bindings for VMware® vCloud Director's rest APIs.

Note: at this stage both v.1.5 and v.5.1 are supported. It defaults to v.5.1 but it's possible to specify _api_version="1.5".

See vCloud API for details.

INSTALLATION

This plugin is distributed as a Ruby Gem. To install it, run:

gem install vcloud-rest

Depending on your system's configuration, you may need to run this command with root privileges.

vcloud-rest is tested against ruby 2.1.2, 2.0.0, 1.9.3 and ruby-head.

FEATURES

  • login/logout
  • list/show Organizations
  • show VDCs
  • show Catalogs
  • show Catalog Items
  • various vApp's commands
    • show
    • create/clone
    • start/stop/delete/reset/suspend/reboot
    • basic network configuration
  • basic VM configuration
    • show
    • set cpu/RAM
    • basic network configuration
    • basic VM Guest Customization configuration
    • start/stop/delete/reset/suspend/reboot
  • basic vApp compose capabilities
  • basic vApp NAT port forwarding creation
  • Catalog item upload with byterange upload and retry capabilities
  • show Network details

TODO

  • extend test coverage
  • a lot more...

PREREQUISITES

  • nokogiri
  • rest-client
  • httpclient
  • ruby-progressbar

(see vcloud_rest.gemspec for details)

For testing purpose:

  • minitest (included in ruby 1.9)
  • webmock

USAGE

require 'vcloud-rest/connection'
conn = VCloudClient::Connection.new(HOST, USER, PASSWORD, ORG_NAME, VERSION)
conn.login
conn.get_organizations

EXAMPLE

A (mostly complete) example can be found in

examples/example.rb

DEBUGGING

Debug can be enabled setting the following environment variables:

  • VCLOUD_REST_DEBUG_LEVEL: to specify the log level (e.g., INFO, DEBUG)
  • VCLOUD_REST_LOG_FILE: to specify the output file (defaults to STDOUT)

TESTING

Simply run:

rake

Or:

ruby spec/connection_spec.rb

Note: in order to run tests with ruby 1.8.x you need to export RUBYOPT="rubygems"

Write new tests

Tests are now managed using VCR and thus real interactions are recorded and replayed.

In order to write new tests the following steps are required:

  1. create a file test_credentials.yml
  2. create a new test entry specifying a new VCR cassette my_test_case.yml
  3. review and anonymize data if necessary under spec/fixtures/vcr_cassettes/my_test_case.yml

Note: values in test_credentials.yml are automatically anonymized.

Examples:

=> test_credentials.yml
:host: https://vcloud_instance_url
:username: test_username
:password: test_password
:org: test_organization


=> Test entry in connection_spec.rb
  it "should power off a given vapp" do
    VCR.use_cassette('vapps/poweroff_vapp') do
      connection.login
      task_id = connection.poweroff_vapp("65b4dbc9-b0b1-46e4-a420-8f8147369f8b")
      expect(task_id).to eq "ae791b59-4c9f-4fe2-9916-703f1fc3cbd5"
    end
  end

=> Recorded fixture (credentials auto-anonymized)
---
http_interactions:
- request:
    method: post
    uri: https://testuser%40testorg:[email protected]/api/sessions
    body:
      encoding: UTF-8
...

LICENSE

Author:: Stefano Tortarolo [email protected]

Copyright:: Copyright (c) 2012-2015 License:: Apache License, Version 2.0

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

CREDITS

This code was inspired by knife-cloudstack.

vcloud-rest's People

Contributors

astratto avatar brettswift avatar frapposelli avatar jvale avatar marbe avatar mhemesath avatar toddq avatar tsugliani avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vcloud-rest's Issues

undefined method `attribute' for nil:NilClass with nokogiri 1.6.6.2

Hi
When attempting the following command: knife vc vdc show <VDC Name> -VV
I receive the following stack trace:

Description:
C:/opscode/chefdk/embedded/lib/ruby/gems/2.0.0/gems/nokogiri-1.6.6.2-x86-mingw32/lib/nokogiri/xml/node_set.rb:164:in `attr': undefined method `attribute' for nil:NilClass (NoMethodError)
        from C:/opscode/chefdk/embedded/lib/ruby/gems/2.0.0/gems/vcloud-rest-1.3.0/lib/vcloud-rest/vcloud/vapp.rb:38:in `block in get_vapp'
        from C:/opscode/chefdk/embedded/lib/ruby/gems/2.0.0/gems/vcloud-rest-1.3.0/lib/vcloud-rest/vcloud/vapp.rb:36:in `collect'
        from C:/opscode/chefdk/embedded/lib/ruby/gems/2.0.0/gems/vcloud-rest-1.3.0/lib/vcloud-rest/vcloud/vapp.rb:36:in `get_vapp'
        from C:/Users/<USER>/.chefdk/gem/ruby/2.0.0/gems/knife-vcloud-1.3.0/lib/chef/knife/vdc/vc_vdc_show.rb:48:in `block in run'
        from C:/Users/<USER>/.chefdk/gem/ruby/2.0.0/gems/knife-vcloud-1.3.0/lib/chef/knife/vdc/vc_vdc_show.rb:47:in `each'
        from C:/Users/<USER>/.chefdk/gem/ruby/2.0.0/gems/knife-vcloud-1.3.0/lib/chef/knife/vdc/vc_vdc_show.rb:47:in `run'
        from C:/opscode/chefdk/embedded/apps/chef/lib/chef/knife.rb:417:in `block in run_with_pretty_exceptions'
        from C:/opscode/chefdk/embedded/apps/chef/lib/chef/local_mode.rb:38:in `with_server_connectivity'
        from C:/opscode/chefdk/embedded/apps/chef/lib/chef/knife.rb:416:in `run_with_pretty_exceptions'
        from C:/opscode/chefdk/embedded/apps/chef/lib/chef/knife.rb:213:in `run'
        from C:/opscode/chefdk/embedded/apps/chef/lib/chef/application/knife.rb:139:in `run'
        from C:/opscode/chefdk/embedded/apps/chef/bin/knife:25:in `<top (required)>'
        from C:/opscode/chefdk/bin/knife:52:in `load'
        from C:/opscode/chefdk/bin/knife:52:in `<main>'

I believe the issue is with the use of .css() instead of .at_css().
This stackoverflow link is what pointed me in the right direction.
I'm not familiar enough with nokogiri to determine whether it changed between versions. If this sounds right, let me know and I can make changes and submit a PR. Or feel free to point me in the right direction :)

Can't install via gem

I can't install via sudo gem install vcloud-rest.

I'm running Ruby (on OSX via RVM) ruby 1.9.3p362 (2012-12-25 revision 38607) [x86_64-darwin12.2.0] and Gem 1.8.24.

This is the output I get:

sudo gem install vcloud-rest                                                                  alexbilbie@localhost
Building native extensions.  This could take a while...
ERROR:  Error installing vcloud-rest:
    ERROR: Failed to build gem native extension.

        /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/bin/ruby extconf.rb
checking for libxml/parser.h... *** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
    --with-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/bin/ruby
    --with-zlib-dir
    --without-zlib-dir
    --with-zlib-include
    --without-zlib-include=${zlib-dir}/include
    --with-zlib-lib
    --without-zlib-lib=${zlib-dir}/lib
    --with-iconv-dir
    --without-iconv-dir
    --with-iconv-include
    --without-iconv-include=${iconv-dir}/include
    --with-iconv-lib
    --without-iconv-lib=${iconv-dir}/lib
    --with-xml2-dir
    --without-xml2-dir
    --with-xml2-include
    --without-xml2-include=${xml2-dir}/include
    --with-xml2-lib
    --without-xml2-lib=${xml2-dir}/lib
    --with-xslt-dir
    --without-xslt-dir
    --with-xslt-include
    --without-xslt-include=${xslt-dir}/include
    --with-xslt-lib
    --without-xslt-lib=${xslt-dir}/lib
    --with-libxslt-config
    --without-libxslt-config
    --with-pkg-config
    --without-pkg-config
    --with-libxml-2.0-config
    --without-libxml-2.0-config
    --with-libiconv-config
    --without-libiconv-config
/Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:381:in `try_do': The compiler failed to generate an executable file. (RuntimeError)
You have to install development tools first.
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:506:in `try_cpp'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:970:in `block in find_header'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:790:in `block in checking_for'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:284:in `block (2 levels) in postpone'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:254:in `open'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:284:in `block in postpone'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:254:in `open'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:280:in `postpone'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:789:in `checking_for'
    from /Users/alexbilbie/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:969:in `find_header'
    from extconf.rb:116:in `<main>'


Gem files will remain installed in /Users/alexbilbie/.rvm/gems/ruby-1.9.3-p362/gems/nokogiri-1.5.10 for inspection.
Results logged to /Users/alexbilbie/.rvm/gems/ruby-1.9.3-p362/gems/nokogiri-1.5.10/ext/nokogiri/gem_make.out

VM

I know that I am asking much, but I was checking if you can provide a ready VM with installed vloud-rest for demo purposes. I'll be really much thankful.

Regards,

Cannot change IP Allocation Mode and set static IP to VM when ip_allocation_mode is DHCP

When setting the ip for the network, the current state is checked. If there is no IP, the .first does not return a value and node is null leading to the error below. It's reasonable to expect that someone would want to use the API to change the allocation method to MANUAL, and then assign the IP address. Changing these two attributes results in the error as IP is null.

It is possible to do this in the web UI, but prevents automation with VMWare when compared to competing clouds like MS Azure or AWS.

Please update to allow changing to/from DHCP.

connection.rb lines 158-161

if config[:ip]
node = picked_network.css('IpAddress').first
node.content = config[:ip]
end

/Ruby24-x64/lib/ruby/gems/2.4.0/gems/vcloud-rest-1.4.0/lib/vcloud-rest/vcloud/vm.rb:160:in edit_vm_network': undefined method content=' for nil:NilClass (NoMethodError) from ./VMWareNicTest.rb:47:in `

'

Failing test with nested namespaced item

Sometimes tests fail (i.e., Travis) after parsing nested namespaced items.

1) Failure:
test_0004_should_return_the_correct_no_of_vms_1(VcloudclientConnectionSpec::ShowVappSpec) [spec/connection_spec.rb:279]:
Expected ["vm_1", {:addresses=>["127.0.0.1"], :status=>"running", :id=>"vm_1"}], 
not ["vm_1", {:addresses=>[nil], :status=>"running", :id=>"vm_1"}].

45 tests, 51 assertions, 1 failures, 0 errors, 0 skips

Test run options: --seed 41396

Upgrading nokogiri doesn't solve the issue, since it seems to be related to the linked version of libxml.

It fails with libxml 2.7.3 and 2.7.8 (used by Travis), but works with libxml 2.9.0.

Not Working

OSX with 1.9.2

$ nokogiri -v
# Nokogiri (1.5.6)
    ---
    warnings: []
    nokogiri: 1.5.6
    ruby:
      version: 1.9.2
      platform: x86_64-darwin11.4.2
      description: ruby 1.9.2p320 (2012-04-20 revision 35421) [x86_64-darwin11.4.2]
      engine: ruby
    libxml:
      binding: extension
      compiled: 2.7.3
      loaded: 2.7.3

Travis with 1.9.3

# Nokogiri (1.5.9)
    ---
    warnings: []
    nokogiri: 1.5.9
    ruby:
      version: 1.9.3
      platform: i686-linux
      description: ruby 1.9.3p327 (2012-11-10 revision 37606) [i686-linux]
      engine: ruby
    libxml:
      binding: extension
      compiled: 2.7.8
      loaded: 2.7.8

Parsed xml

vms.first.css('rasd|Connection')
[#<Nokogiri::XML::Element:0x559d1fc name="Connection" namespace=#<Nokogiri::XML::Namespace:0x559d1ca prefix="rasd" href="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData"> attributes=[#<Nokogiri::XML::Attr:0x559d1b6 name="ipAddress" value="127.0.0.1">]>]
Gem.loaded_specs['nokogiri']
#<Gem::Specification name=nokogiri version=1.5.9>

Parsed attribute:

#<Nokogiri::XML::Attr:0x559d1b6 name="ipAddress" value="127.0.0.1"

Working

OSX with 1.9.2

$ nokogiri -v
# Nokogiri (1.5.9)
    ---
    warnings: []
    nokogiri: 1.5.9
    ruby:
      version: 1.9.2
      platform: x86_64-darwin11.4.2
      description: ruby 1.9.2p320 (2012-04-20 revision 35421) [x86_64-darwin11.4.2]
      engine: ruby
    libxml:
      binding: extension
      compiled: 2.9.0
      loaded: 2.9.0

OSX with 1.9.3

 nokogiri -v
# Nokogiri (1.5.9)
    ---
    warnings: []
    nokogiri: 1.5.9
    ruby:
      version: 1.9.3
      platform: x86_64-darwin11.4.2
      description: ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-darwin11.4.2]
      engine: ruby
    libxml:
      binding: extension
      compiled: 2.9.0
      loaded: 2.9.0

Parsed xml

vms.first.css('rasd|Connection')
[#<Nokogiri::XML::Element:0x3fed95ec02d0 name="Connection" namespace=#<Nokogiri::XML::Namespace:0x3fed95e516a0 prefix="rasd" href="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData"> attributes=[#<Nokogiri::XML::Attr:0x3fed95b0f208 name="vcloud:ipAddress" value="127.0.0.1">]>]
Gem.loaded_specs['nokogiri']
#<Gem::Specification:0x3fed96418ed0 nokogiri-1.5.9>

Parsed attribute:

#<Nokogiri::XML::Attr:0x3fed95b0f208 name="vcloud:ipAddress" value="127.0.0.1"

unhandled exception in get_vm_by_name method

I'm using knife-vcloud gem in order to check if a vm already exists on vcloud director
but when I execute the command:

knife vc vm show nonexistentVM --org-login foo --vdc vDC_bar --vapp nonexistentVAPP -VV

vcloud-rest fails with the following error:

/opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/vcloud-rest-1.3.0/lib/vcloud-rest/vcloud/vm.rb:394:in `get_vm_by_name': undefined method `[]' for nil:NilClass (NoMethodError)
    from /opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/knife-vcloud-1.3.0/lib/chef/knife/common/vc_vm_common.rb:48:in `get_vm'
    from /opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/knife-vcloud-1.3.0/lib/chef/knife/vm/vc_vm_show.rb:34:in `run'
    from /opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/chef-11.12.4/lib/chef/knife.rb:492:in `run_with_pretty_exceptions'
    from /opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/chef-11.12.4/lib/chef/knife.rb:174:in `run'
    from /opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/chef-11.12.4/lib/chef/application/knife.rb:135:in `run'
    from /opt/rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/chef-11.12.4/bin/knife:25:in `<top (required)>'
    from /opt/rbenv/versions/2.1.1/bin/knife:23:in `load'
    from /opt/rbenv/versions/2.1.1/bin/knife:23:in `<main>'

A friedly message such as The requested vm does not exist will be probably better... ;-)

Displaying vDC informations fails.

The following fails:

knife vc vdc show -VV <NAME>
INFO: Using configuration from /Users/tblah/.chef//knife.rb
Description:
/opt/chefdk/embedded/lib/ruby/gems/2.1.0/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/node_set.rb:164:in `attr': undefined method `attribute' for nil:NilClass (NoMethodError)
    from /Users/tblah/.chefdk/gem/ruby/2.1.0/gems/vcloud-rest-1.3.0/lib/vcloud-rest/vcloud/vapp.rb:38:in `block in get_vapp'
    from /Users/tblah/.chefdk/gem/ruby/2.1.0/gems/vcloud-rest-1.3.0/lib/vcloud-rest/vcloud/vapp.rb:36:in `collect'
    from /Users/tblah/.chefdk/gem/ruby/2.1.0/gems/vcloud-rest-1.3.0/lib/vcloud-rest/vcloud/vapp.rb:36:in `get_vapp'
    from /Users/tblah/.chefdk/gem/ruby/2.1.0/gems/knife-vcloud-1.3.1/lib/chef/knife/vdc/vc_vdc_show.rb:48:in `block in run'
    from /Users/tblah/.chefdk/gem/ruby/2.1.0/gems/knife-vcloud-1.3.1/lib/chef/knife/vdc/vc_vdc_show.rb:47:in `each'
    from /Users/tblah/.chefdk/gem/ruby/2.1.0/gems/knife-vcloud-1.3.1/lib/chef/knife/vdc/vc_vdc_show.rb:47:in `run'
    from /opt/chefdk/embedded/apps/chef/lib/chef/knife.rb:417:in `block in run_with_pretty_exceptions'
    from /opt/chefdk/embedded/apps/chef/lib/chef/local_mode.rb:38:in `with_server_connectivity'
    from /opt/chefdk/embedded/apps/chef/lib/chef/knife.rb:416:in `run_with_pretty_exceptions'
    from /opt/chefdk/embedded/apps/chef/lib/chef/knife.rb:213:in `run'
    from /opt/chefdk/embedded/apps/chef/lib/chef/application/knife.rb:139:in `run'
    from /opt/chefdk/embedded/apps/chef/bin/knife:25:in `<top (required)>'
    from /opt/chefdk/bin/knife:40:in `load'
    from /opt/chefdk/bin/knife:40:in `<main>'

If I can be of any assistance to debug let me know...

OVF upload fails

See astratto/knife-vcloud#3:

Trying to upload an OVF file to our vCloud at work I got the following:

tarak@taraks_host > knife vc ovf upload testVDC testCatalog testApp "Example OVF upload" /var/folders/h6/b8sv_g295t9csx6v404g34qh0000gp/T/tmp.80HYgKktAF.ovf
WARNING: Could not load IOV methods. Check your GSSAPI C library for an update
WARNING: Could not load AEAD methods. Check your GSSAPI C library for an update
Uploading OVF...
E, [2014-01-20T14:53:23.676689 #20301] ERROR -- : Exception detected: /var/folders/h6/b8sv_g295t9csx6v404g34qh0000gp/T/https://www.xx.yy.zz:443/transfer/b08af8f6-6854-4091-b56e-f41140551e27/descriptor.ovf not found..
ERROR: IOError: /var/folders/h6/b8sv_g295t9csx6v404g34qh0000gp/T/https://82.192.193.254:443/transfer/b08af8f6-6854-4091-b56e-f41140551e27/descriptor.ovf not found.

I use Mac OS X with Chef 11.8 on ruby 1.9.3p484 (2013-11-22 revision 43786) [x86_64-darwin11.2.0] with knife-vcloud (1.1.0), knife-windows (0.5.14) and vcloud-rest (1.1.1).

I've created a log file as requested, please see:

https://gist.github.com/tarak/8537287

Returned ids in objects

Hey,

I'm not sure if this is due to how our admins set up vCloud, or an issue in vcloud itself.
In your examples you have something like this:

orgs = connection.get_organizations
org = connection.get_organization(orgs["COE"])

=> This never works in my setup, as the value of orgs['COE'] is the entire vcloud-url + id, rather than just the id:

 >  orgs = connection.get_organizations
 => {"TestOrganisation"=>"https://testvcloud.domain.com/cloud/org/testorganisation/api/org/61b1fbaa-e499-4b9c-834b-4c2901a7da7f"} 

As a result, all x_by_name and other combined helper methods fail. Again, I'm not sure if this is due to how our vcloud was setup, or an issue with vcloud-rest.

vApp IP Address parsing "undefined method 'value' "

Great API so far. I have found a bug in the vApp section, and it may be due to how I've assigned the vApp a static IP? I'm new to ruby, but will attempt to build your gem locally and test this. Just putting this issue up for visibility.

Using the progression from your example.rb, after getting a vcd I call this:
vApp = connection.get_vapp(vdc[:vapps]["Dev Sandbox"])

sanitized result from VDC:

### Fetch and Show  vDC
{
             :id => "5b10045c-f43c-44ec-b30f-1aa745fd2cba",
           :name => "vdc",
    :description => "CG-NO resources",
          :vapps => {
...
                          "Dev Sandbox" => "e453c846-bf36-4bd7-9e52-255d718df601" 
....
    },
       :networks => {
       ....
    }
}

Stack:

/Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/vcloud-rest-1.1.0/lib/vcloud-rest/vcloud/vapp.rb:92:in `block (2 levels) in get_vapp': undefined method `value' for "10.191.101.118":String (NoMethodError)
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1/lib/nokogiri/xml/node_set.rb:237:in `block in each'
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1/lib/nokogiri/xml/node_set.rb:236:in `upto'
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1/lib/nokogiri/xml/node_set.rb:236:in `each'
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/vcloud-rest-1.1.0/lib/vcloud-rest/vcloud/vapp.rb:89:in `collect'
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/vcloud-rest-1.1.0/lib/vcloud-rest/vcloud/vapp.rb:89:in `block in get_vapp'
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1/lib/nokogiri/xml/node_set.rb:237:in `block in each'
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1/lib/nokogiri/xml/node_set.rb:236:in `upto'
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/nokogiri-1.6.1/lib/nokogiri/xml/node_set.rb:236:in `each'
    from /Users/bswift/.rvm/gems/ruby-2.0.0-p353/gems/vcloud-rest-1.1.0/lib/vcloud-rest/vcloud/vapp.rb:87:in `get_vapp'
    from runvCloud.rb:57:in `<main>'

Co-maintainer needed

Hey guys,

I don't have a stable access to a vCloud Director instance and I'm not able anymore to properly maintain this gem all alone.

I'm looking for a co-maintainer that can help me ensure that issues are addressed in a timely fashion and fixes are effective.

Ping me if you have questions.

Note: I've added a post-install banner to help spread this message.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.