Remove Gemfile.lock (it is far too volatile for VCS now)

This commit is contained in:
Tianon Gravi
2015-06-16 15:00:58 -07:00
committed by Joe Ferguson
parent b3be23aa5b
commit f4b6c28e8a
2 changed files with 10 additions and 33 deletions
-33
View File
@@ -1,33 +0,0 @@
GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.2.5)
mini_portile (0.6.2)
nokogiri (1.6.5)
mini_portile (~> 0.6.0)
nokogiri (1.6.5-java)
rack (1.6.0)
rspec (3.1.0)
rspec-core (~> 3.1.0)
rspec-expectations (~> 3.1.0)
rspec-mocks (~> 3.1.0)
rspec-core (3.1.7)
rspec-support (~> 3.1.0)
rspec-expectations (3.1.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.1.0)
rspec-mocks (3.1.3)
rspec-support (~> 3.1.0)
rspec-support (3.1.2)
PLATFORMS
java
ruby
DEPENDENCIES
nokogiri
rack (~> 1.1)
rspec
BUNDLED WITH
1.10.3
+10
View File
@@ -1,4 +1,14 @@
#!/bin/bash
set -e
dir="$(mktemp -d)"
trap "rm -rf '$dir'" EXIT
cp Gemfile "$dir"
# make sure that running "bundle" twice doesn't change Gemfile.lock the second time
cd "$dir"
bundle
cp Gemfile.lock{,.orig}
bundle
diff -u Gemfile.lock{.orig,} >&2