-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
backporting fixes and cutting v0.3.3
- Loading branch information
1 parent
9b9e683
commit 65ad145
Showing
5 changed files
with
12 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,7 @@ | ||
require 'rubygems' | ||
require 'bundler/setup' | ||
require 'bundler/gem_tasks' | ||
require 'rspec/core/rake_task' | ||
|
||
# Immediately sync all stdout so that tools like buildbot can | ||
# immediately load in the output. | ||
$stdout.sync = true | ||
$stderr.sync = true | ||
|
||
# Change to the y of this file. | ||
Dir.chdir(File.expand_path('../', __FILE__)) | ||
|
||
Bundler::GemHelper.install_tasks | ||
|
||
RSpec::Core::RakeTask.new | ||
|
||
task :default => 'spec' | ||
task :default => 'spec' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module VagrantPlugins | ||
# Set version for vagrant-vcenter gem. | ||
module VCenter | ||
VERSION = '0.3.2' | ||
VERSION = '0.3.3' | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# encoding: UTF-8 | ||
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__) | ||
require 'vagrant-vcenter/version' | ||
|
||
|
@@ -7,19 +8,20 @@ Gem::Specification.new do |s| | |
s.platform = Gem::Platform::RUBY | ||
s.authors = 'Fabio Rapposelli' | ||
s.email = '[email protected]' | ||
s.homepage = 'https://github.com/gosddc/vagrant-vcenter' | ||
s.homepage = 'https://github.com/frapposelli/vagrant-vcenter' | ||
s.license = 'MIT' | ||
s.summary = 'VMware vCenter® Vagrant provider' | ||
s.description = 'Enables Vagrant to manage machines with VMware vCenter®.' | ||
|
||
s.add_runtime_dependency 'vagrant-rbvmomi', '~> 1.8.1' | ||
s.add_runtime_dependency 'log4r', '~> 1.1.10' | ||
s.add_runtime_dependency 'pry' | ||
|
||
s.add_development_dependency 'bundler' | ||
s.add_development_dependency 'rake' | ||
s.add_development_dependency 'rspec-core', '~> 2.12.2' | ||
s.add_development_dependency 'rspec-expectations', '~> 2.12.1' | ||
s.add_development_dependency 'rspec-mocks', '~> 2.12.1' | ||
s.add_development_dependency 'rubocop' | ||
|
||
s.files = `git ls-files`.split($RS) | ||
s.executables = s.files.grep(/^bin/) { |f| File.basename(f) } | ||
|