From d95b481d955996f6312608d976fab3a03986f908 Mon Sep 17 00:00:00 2001 From: Brendan Bartels <bbartels@iastate.edu> Date: Sun, 30 Oct 2016 14:37:33 -0500 Subject: [PATCH] website: Add Gemfile.lock to .gitignore Looks like I have different versions of the required dependencies, which did not match those specified in our current Gemfile.lock. Hence `jekyll build` would break for me. Adding Gemfile.lock to .gitignore to allow people to use different versions of gem dependencies. (After all, we are only just generating static html pages with bundler probably isn't that important that we all use the same versions of stuff...) --- wobsite/.gitignore | 2 ++ wobsite/Gemfile.lock | 45 -------------------------------------------- 2 files changed, 2 insertions(+), 45 deletions(-) delete mode 100644 wobsite/Gemfile.lock diff --git a/wobsite/.gitignore b/wobsite/.gitignore index 8cc664db8..2622867e8 100644 --- a/wobsite/.gitignore +++ b/wobsite/.gitignore @@ -112,3 +112,5 @@ crashlytics-build.properties # Bundler .bundle vendor + +Gemfile.lock \ No newline at end of file diff --git a/wobsite/Gemfile.lock b/wobsite/Gemfile.lock deleted file mode 100644 index a495ea636..000000000 --- a/wobsite/Gemfile.lock +++ /dev/null @@ -1,45 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - addressable (2.4.0) - colorator (1.1.0) - ffi (1.9.14) - forwardable-extended (2.6.0) - jekyll (3.3.0) - addressable (~> 2.4) - colorator (~> 1.0) - jekyll-sass-converter (~> 1.0) - jekyll-watch (~> 1.1) - kramdown (~> 1.3) - liquid (~> 3.0) - mercenary (~> 0.3.3) - pathutil (~> 0.9) - rouge (~> 1.7) - safe_yaml (~> 1.0) - jekyll-sass-converter (1.4.0) - sass (~> 3.4) - jekyll-watch (1.5.0) - listen (~> 3.0, < 3.1) - kramdown (1.12.0) - liquid (3.0.6) - listen (3.0.8) - rb-fsevent (~> 0.9, >= 0.9.4) - rb-inotify (~> 0.9, >= 0.9.7) - mercenary (0.3.6) - pathutil (0.14.0) - forwardable-extended (~> 2.6) - rb-fsevent (0.9.7) - rb-inotify (0.9.7) - ffi (>= 0.5.0) - rouge (1.11.1) - safe_yaml (1.0.4) - sass (3.4.22) - -PLATFORMS - ruby - -DEPENDENCIES - jekyll - -BUNDLED WITH - 1.10.6 -- GitLab