diff --git a/.gitignore b/.gitignore index 7875d84..24bfc9e 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,5 @@ /.env.local* /vendor/bundle +# do not version lock file as we will use ondemand-gems +Gemfile.lock diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index ba4afb4..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,40 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - ffi (1.15.5) - minitest (5.17.0) - mocha (2.0.2) - ruby2_keywords (>= 0.0.5) - mustermann (3.0.0) - ruby2_keywords (~> 0.0.1) - ood_core (0.23.3) - ffi (~> 1.9, >= 1.9.6) - ood_support (~> 0.0.2) - rexml (~> 3.2) - ood_support (0.0.5) - rack (2.2.8) - rack-protection (3.0.5) - rack - rake (13.0.6) - rexml (3.2.5) - ruby2_keywords (0.0.5) - sinatra (3.0.5) - mustermann (~> 3.0) - rack (~> 2.2, >= 2.2.4) - rack-protection (= 3.0.5) - tilt (~> 2.0) - tilt (2.1.0) - -PLATFORMS - x86_64-linux - -DEPENDENCIES - minitest - mocha - ood_core (~> 0.11) - rake - rexml - sinatra - -BUNDLED WITH - 2.3.6 diff --git a/bin/bundle b/bin/bundle deleted file mode 100755 index 66e9889..0000000 --- a/bin/bundle +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env ruby -ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) -load Gem.bin_path('bundler', 'bundle') diff --git a/bin/setup b/bin/setup index 69973d0..b7d0e99 100755 --- a/bin/setup +++ b/bin/setup @@ -12,7 +12,7 @@ chdir APP_ROOT do # Add necessary setup steps to this file: puts "\n== Verify dependencies ==" - sh "bin/bundle check 1>/dev/null 2>&1 || bin/bundle install" + sh "bundle check 1>/dev/null 2>&1 || bundle install" puts "\n== Restart App ==" touch "tmp/restart.txt"