Gemfile in vagrant-rackspace-0.1.9 vs Gemfile in vagrant-rackspace-0.1.10
- old
+ new
@@ -1,19 +1,13 @@
source 'https://rubygems.org'
-
-group :plugins do
- gemspec
- gem 'vagrant', :git => 'https://github.com/mitchellh/vagrant'
-end
-
-gem "appraisal", "1.0.0.beta2"
-
group :development do
- # We depend on Vagrant for development, but we don't add it as a
- # gem dependency because we expect to be installed within the
- # Vagrant environment itself using `vagrant plugin`.
gem 'coveralls', require: false
gem 'pry'
+ # My branch contains a fix for https://github.com/thoughtbot/appraisal/issues/76
+ gem 'appraisal', '~> 1.0', git: 'https://github.com/maxlinc/appraisal', branch: 'gemspec_in_group'
end
-
\ No newline at end of file
+group :plugins do
+ gem "vagrant", git: "https://github.com/mitchellh/vagrant.git", :branch => 'master'
+ gemspec
+end