Skip to content
This repository has been archived by the owner on Nov 24, 2022. It is now read-only.

Commit

Permalink
Remove Gemfile.lock and properly lock stuff in Gemfile
Browse files Browse the repository at this point in the history
No other vagrant plugin use `Gemfile.lock`. It doesn't feel right.

When removing it, however, we end up with many dependencies conflicts.
It then becomes necessary to freeze dependencies in `Gemfile`.
  • Loading branch information
Virgil Dupras committed Jan 13, 2018
1 parent f8a78e5 commit fe7d638
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 186 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ doc/

/tags
/gems.tags
/Gemfile.lock

.vagrant
/cache
Expand Down
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ group :development do
end

group :development, :test do
gem 'rake'
gem 'rspec', '2.99.0'
gem 'coveralls', require: (ENV['COVERAGE'] == 'true')
gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git'
gem 'rake', '~> 10.4.2'
gem 'rspec', '~> 2.99.0'
gem 'coveralls', '~> 0.7.2', require: (ENV['COVERAGE'] == 'true')
gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git', ref: '1df5a3af81cb7cce568b2eac52b8f6822bcb1d8e'
end

group :plugins do
Expand Down
182 changes: 0 additions & 182 deletions Gemfile.lock

This file was deleted.

0 comments on commit fe7d638

Please sign in to comment.