mirror of
https://github.com/clearlinux/official-images.git
synced 2026-09-06 21:51:40 +00:00
Remove Gemfile.lock (it is far too volatile for VCS now)
This commit is contained in:
committed by
Joe Ferguson
parent
b3be23aa5b
commit
f4b6c28e8a
@@ -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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user