diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef0807d..e179a3d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,10 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: "3.1" + ruby-version: "3.2" bundler-cache: true - name: Build and install gem to systems gems run: bundle exec rake install @@ -39,10 +39,10 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["2.7", "3.0"] + ruby: ["2.7", "3.0", "3.1"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} diff --git a/Gemfile b/Gemfile index be173b2..934ca3c 100644 --- a/Gemfile +++ b/Gemfile @@ -3,3 +3,12 @@ source "https://rubygems.org" gemspec + +gem "bundler" +gem "bundler-audit" +gem "pry" +gem "rake" +gem "rspec" +gem "rubocop-config-umbrellio" +gem "simplecov" +gem "simplecov-lcov" diff --git a/Gemfile.lock b/Gemfile.lock index c879b7e..f362e3a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,91 +1,111 @@ PATH remote: . specs: - ci-helper (0.5.0) - colorize (~> 0.8) - dry-inflector (~> 0.2) - umbrellio-sequel-plugins (~> 0.4) + ci-helper (0.6.0) + colorize (~> 1.1) + dry-inflector (~> 1.0) + umbrellio-sequel-plugins (~> 0.14) GEM remote: https://rubygems.org/ specs: - activesupport (7.0.2.4) + activesupport (7.1.2) + base64 + bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb i18n (>= 1.6, < 2) minitest (>= 5.1) + mutex_m tzinfo (~> 2.0) ast (2.4.2) - bundler-audit (0.9.0.1) + base64 (0.2.0) + bigdecimal (3.1.4) + bundler-audit (0.9.1) bundler (>= 1.2.0, < 3) thor (~> 1.0) coderay (1.1.3) - colorize (0.8.1) - concurrent-ruby (1.1.10) + colorize (1.1.0) + concurrent-ruby (1.2.2) + connection_pool (2.4.1) diff-lcs (1.5.0) docile (1.4.0) - dry-inflector (0.2.1) - i18n (1.10.0) + drb (2.2.0) + ruby2_keywords + dry-inflector (1.0.0) + i18n (1.14.1) concurrent-ruby (~> 1.0) + json (2.7.1) method_source (1.0.0) - minitest (5.15.0) - parallel (1.22.1) - parser (3.1.2.0) + minitest (5.20.0) + mutex_m (0.2.0) + parallel (1.23.0) + parser (3.2.2.4) ast (~> 2.4.1) - pry (0.14.1) + racc + pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - rack (2.2.3) + racc (1.7.3) + rack (3.0.8) rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.3.1) - rexml (3.2.5) - rspec (3.11.0) - rspec-core (~> 3.11.0) - rspec-expectations (~> 3.11.0) - rspec-mocks (~> 3.11.0) - rspec-core (3.11.0) - rspec-support (~> 3.11.0) - rspec-expectations (3.11.0) + rake (13.1.0) + regexp_parser (2.8.3) + rexml (3.2.6) + rspec (3.12.0) + rspec-core (~> 3.12.0) + rspec-expectations (~> 3.12.0) + rspec-mocks (~> 3.12.0) + rspec-core (3.12.2) + rspec-support (~> 3.12.0) + rspec-expectations (3.12.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) - rspec-mocks (3.11.1) + rspec-support (~> 3.12.0) + rspec-mocks (3.12.6) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) - rspec-support (3.11.0) - rubocop (1.25.1) + rspec-support (~> 3.12.0) + rspec-support (3.12.1) + rubocop (1.50.2) + json (~> 2.3) parallel (~> 1.10) - parser (>= 3.1.0.0) + parser (>= 3.2.0.0) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.15.1, < 2.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.28.0, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.17.0) - parser (>= 3.1.1.0) - rubocop-config-umbrellio (1.25.0.61) - rubocop (~> 1.25.0) - rubocop-performance (~> 1.13.0) - rubocop-rails (~> 2.13.0) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + rubocop-capybara (2.19.0) + rubocop (~> 1.41) + rubocop-config-umbrellio (1.50.0.85) + rubocop (~> 1.50.0) + rubocop-performance (~> 1.17.0) + rubocop-rails (~> 2.19.0) rubocop-rake (~> 0.6.0) - rubocop-rspec (~> 2.7.0) + rubocop-rspec (~> 2.20.0) rubocop-sequel (~> 0.3.3) - rubocop-performance (1.13.3) + rubocop-performance (1.17.1) rubocop (>= 1.7.0, < 2.0) rubocop-ast (>= 0.4.0) - rubocop-rails (2.13.2) + rubocop-rails (2.19.1) activesupport (>= 4.2.0) rack (>= 1.1) - rubocop (>= 1.7.0, < 2.0) + rubocop (>= 1.33.0, < 2.0) rubocop-rake (0.6.0) rubocop (~> 1.0) - rubocop-rspec (2.7.0) - rubocop (~> 1.19) - rubocop-sequel (0.3.3) + rubocop-rspec (2.20.0) + rubocop (~> 1.33) + rubocop-capybara (~> 2.17) + rubocop-sequel (0.3.4) rubocop (~> 1.0) - ruby-progressbar (1.11.0) - sequel (5.56.0) - simplecov (0.21.2) + ruby-progressbar (1.13.0) + ruby2_keywords (0.0.5) + sequel (5.75.0) + bigdecimal + simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) @@ -93,16 +113,16 @@ GEM simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) symbiont-ruby (0.7.0) - thor (1.2.1) - tzinfo (2.0.4) + thor (1.3.0) + tzinfo (2.0.6) concurrent-ruby (~> 1.0) - umbrellio-sequel-plugins (0.5.1.27) + umbrellio-sequel-plugins (0.14.0.189) sequel symbiont-ruby - unicode-display_width (2.1.0) + unicode-display_width (2.5.0) PLATFORMS - ruby + arm64-darwin-23 x86_64-linux DEPENDENCIES @@ -117,4 +137,4 @@ DEPENDENCIES simplecov-lcov BUNDLED WITH - 2.3.13 + 2.4.21 diff --git a/ci_helper.gemspec b/ci_helper.gemspec index 6ce6e78..44f84b4 100644 --- a/ci_helper.gemspec +++ b/ci_helper.gemspec @@ -24,16 +24,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.add_runtime_dependency "colorize", "~> 0.8" - spec.add_runtime_dependency "dry-inflector", "~> 0.2" - spec.add_runtime_dependency "umbrellio-sequel-plugins", "~> 0.4" - - spec.add_development_dependency "bundler" - spec.add_development_dependency "bundler-audit" - spec.add_development_dependency "pry" - spec.add_development_dependency "rake" - spec.add_development_dependency "rspec" - spec.add_development_dependency "rubocop-config-umbrellio" - spec.add_development_dependency "simplecov" - spec.add_development_dependency "simplecov-lcov" + spec.add_runtime_dependency "colorize", "~> 1.1" + spec.add_runtime_dependency "dry-inflector", "~> 1.0" + spec.add_runtime_dependency "umbrellio-sequel-plugins", "~> 0.14" end diff --git a/lib/ci_helper/version.rb b/lib/ci_helper/version.rb index 67e092f..9f95d27 100644 --- a/lib/ci_helper/version.rb +++ b/lib/ci_helper/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CIHelper - VERSION = "0.5.0" + VERSION = "0.6.0" end