HewlettPackard / oneview-chef

This project is no longer being developed and has limited support. In the near future this repository will be fully deprecated. Please consider using other OneView projects, such as Terraform and Ansible Collection
https://supermarket.chef.io/cookbooks/oneview
Apache License 2.0
17 stars 15 forks source link

Support development of unreleased features in Ruby SDK #184

Closed tmiotto closed 7 years ago

tmiotto commented 7 years ago

Scenario/Intent

Make possible to develop features that weren't released yet in Ruby SDK without making the master unstable.

Environment Details

tmiotto commented 7 years ago

By now I created a master_i3s branch to the new unreleased Image Streamer features.

jsmartt commented 7 years ago

@tmiotto , it's going to be a little tricky to run the tests on Travis with unreleased SDK features. I saw #185 that posed a solution to that, but it was closed. What about just updating the Gemfile of that branch to do something like this:

# Gemfile
...
gem 'oneview-sdk', :git => 'https://github.com/HewlettPackard/oneview-sdk-ruby.git', :branch => 'master'
...

(docs here)