Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0 #174

Merged
merged 4 commits into from
Jul 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.2.3
# Tracking Vagrant 1.8.5
2.3.0
# Tracking Vagrant 1.9.7
9 changes: 4 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@

source "https://rubygems.org"

gemspec
group :plugins do
# Dependencies need to be specified in vagrant-google.gemspec
gemspec
end

group :development do
# We depend on Vagrant for development, but we don't add it as a
Expand All @@ -23,7 +26,3 @@ group :development do
gem 'vagrant', git: "https://github.com/mitchellh/vagrant.git"
gem 'vagrant-spec', git: "https://github.com/mitchellh/vagrant-spec.git"
end

group :plugins do
gem "vagrant-google" , path: "."
end
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This is a [Vagrant](http://www.vagrantup.com) 1.2+ plugin that adds an
[Google Compute Engine](http://cloud.google.com/compute/) (GCE) provider to
Vagrant, allowing Vagrant to control and provision instances in GCE.

**NOTE:** This plugin requires Vagrant 1.2+.
The maintainers for this plugin are @temikus(primary), @erjohnso(backup).

## Features

Expand Down Expand Up @@ -187,6 +187,7 @@ This provider exposes quite a few provider-specific configuration options:
e.g. 10/08/2015 13:15:15 is "i-2015081013-15637fda".
* `network` - The name of the network to use for the instance. Default is
"default".
* `subnetwork` - The name of the subnetwork to use for the instance.
* `tags` - An array of tags to apply to this instance.
* `zone` - The zone name where the instance will be created.
* `can_ip_forward` - Boolean whether to enable IP Forwarding.
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-google/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.
module VagrantPlugins
module Google
VERSION = "0.2.5".freeze
VERSION = "1.0.0".freeze
end
end
6 changes: 5 additions & 1 deletion vagrant-google.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ Gem::Specification.new do |s|

s.add_development_dependency "pry"
s.add_development_dependency "pry-byebug"
s.add_development_dependency "rake"

# This is a restriction to avoid an error "undefined method 'last_comment'"
# which is deprecated (see https://github.com/ruby/rake/issues/116)
# Remove it after update rspec-core to version greater than or equal to 3.4.4
s.add_development_dependency "rake", "< 11.0"
s.add_development_dependency "rspec", "~> 2.14"
s.add_development_dependency "rubocop", "~> 0.35"
s.add_development_dependency "highline"
Expand Down