From dfa13e6d10f733ddd2b10a0f43c97cbbc11b94b8 Mon Sep 17 00:00:00 2001 From: Nemo Date: Sun, 26 Apr 2020 08:22:16 +0530 Subject: [PATCH] Don't commit Gemfile.lock Current best practice is to commit this https://bundler.io/man/bundle-install.1.html#THE-GEMFILE-LOCK but we have zero deps, so it doesn't make sense --- .gitignore | 4 ++++ Gemfile | 2 -- Gemfile.lock | 34 ---------------------------------- 3 files changed, 4 insertions(+), 36 deletions(-) delete mode 100644 Gemfile.lock diff --git a/.gitignore b/.gitignore index 76d0aaa..a7831b3 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,7 @@ __pycache__/ /composer.lock /package-lock.json +# Current best practice is to commit this +# https://bundler.io/man/bundle-install.1.html#THE-GEMFILE-LOCK +# but we have zero deps, so it doesn't make sense +Gemfile.lock diff --git a/Gemfile b/Gemfile index 0c032ea..0a5000a 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,3 @@ source "https://rubygems.org" # Specify your gem's dependencies in pincode-validator.gemspec gemspec - -gem "rake", "~> 12.0" diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index de39f4a..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,34 +0,0 @@ -PATH - remote: . - specs: - pincode_validator (1.0.3) - -GEM - remote: https://rubygems.org/ - specs: - diff-lcs (1.3) - rake (12.3.3) - rspec (3.9.0) - rspec-core (~> 3.9.0) - rspec-expectations (~> 3.9.0) - rspec-mocks (~> 3.9.0) - rspec-core (3.9.1) - rspec-support (~> 3.9.1) - rspec-expectations (3.9.1) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.9.0) - rspec-mocks (3.9.1) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.9.0) - rspec-support (3.9.2) - -PLATFORMS - ruby - -DEPENDENCIES - pincode_validator! - rake (~> 12.0) - rspec (~> 3.8) - -BUNDLED WITH - 2.1.4