From 7b8ec909fd2395c83563a2f9e05b76cfc44c5220 Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 25 Nov 2022 15:12:55 -0500 Subject: [PATCH] ignore Gemfile.lock (#58) --- .github/workflows/release.yml | 4 -- .github/workflows/ruby.yml | 3 - .gitignore | 7 +- Gemfile.lock | 124 ---------------------------------- 4 files changed, 4 insertions(+), 134 deletions(-) delete mode 100644 Gemfile.lock diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d26921..cc782c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,10 +16,6 @@ jobs: release-type: ruby version-file: "lib/image_scraper/version.rb" - uses: actions/checkout@v3 - - name: remove Gemfile.lock - if: "${{ steps.release.outputs.release_created }}" - run: | - rm Gemfile.lock - name: install ruby if: "${{ steps.release.outputs.release_created }}" uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 7ef37dc..ddf1933 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -12,9 +12,6 @@ jobs: steps: - uses: actions/checkout@v3 - - name: remove Gemfile.lock - run: | - rm Gemfile.lock - name: Set up Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.gitignore b/.gitignore index b04a8c8..5671c32 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,12 @@ +# rspec failure tracking +.rspec_status + /.bundle/ /.yardoc +/Gemfile*lock /_yardoc/ /coverage/ /doc/ /pkg/ /spec/reports/ /tmp/ - -# rspec failure tracking -.rspec_status diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 8f3a602..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,124 +0,0 @@ -PATH - remote: . - specs: - image_scraper (0.1.13) - css_parser (~> 1.11) - nokogiri (~> 1.13) - -GEM - remote: http://rubygems.org/ - specs: - addressable (2.8.1) - public_suffix (>= 2.0.2, < 6.0) - ast (2.4.2) - coderay (1.1.3) - crack (0.4.5) - rexml - css_parser (1.12.0) - addressable - diff-lcs (1.5.0) - ffi (1.15.5) - formatador (1.1.0) - guard (2.18.0) - formatador (>= 0.2.4) - listen (>= 2.7, < 4.0) - lumberjack (>= 1.0.12, < 2.0) - nenv (~> 0.1) - notiffany (~> 0.0) - pry (>= 0.13.0) - shellany (~> 0.0) - thor (>= 0.18.1) - guard-compat (1.2.1) - guard-rspec (4.7.3) - guard (~> 2.1) - guard-compat (~> 1.1) - rspec (>= 2.99.0, < 4.0) - hashdiff (1.0.1) - json (2.6.2) - listen (3.7.1) - rb-fsevent (~> 0.10, >= 0.10.3) - rb-inotify (~> 0.9, >= 0.9.10) - lumberjack (1.2.8) - method_source (1.0.0) - nenv (0.3.0) - nokogiri (1.13.9-arm64-darwin) - racc (~> 1.4) - notiffany (0.1.3) - nenv (~> 0.1) - shellany (~> 0.0) - parallel (1.22.1) - parser (3.1.3.0) - ast (~> 2.4.1) - power_assert (2.0.2) - pry (0.14.1) - coderay (~> 1.1) - method_source (~> 1.0) - public_suffix (5.0.0) - racc (1.6.0) - rainbow (3.1.1) - rake (13.0.6) - rb-fsevent (0.11.2) - rb-inotify (0.10.1) - ffi (~> 1.0) - regexp_parser (2.6.1) - rexml (3.2.5) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) - rubocop (1.39.0) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.1.2.1) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.23.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.23.0) - parser (>= 3.1.1.0) - rubocop-rspec (2.15.0) - rubocop (~> 1.33) - ruby-progressbar (1.11.0) - shellany (0.0.1) - test-unit (3.5.5) - power_assert - thor (1.2.1) - unicode-display_width (2.3.0) - vcr (6.1.0) - webmock (3.18.1) - addressable (>= 2.8.0) - crack (>= 0.3.2) - hashdiff (>= 0.4.0, < 2.0.0) - -PLATFORMS - arm64-darwin-22 - -DEPENDENCIES - bundler (~> 2.3) - guard-rspec - image_scraper! - pry - rake (~> 13.0) - rspec (~> 3.4) - rubocop (~> 1.21) - rubocop-rspec - test-unit - vcr (~> 6.0) - webmock - -RUBY VERSION - ruby 3.1.3p185 - -BUNDLED WITH - 2.3.26