diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 004aae1..2546b53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ["3.0", "3.1", "3.2", "3.3", "head"] + ruby: ["3.1", "3.2", "3.3", "head"] steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 diff --git a/.rubocop.yml b/.rubocop.yml index 3fd521a..62b1683 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -8,7 +8,7 @@ AllCops: DisplayCopNames: true DisplayStyleGuide: true NewCops: enable - TargetRubyVersion: 3.0 + TargetRubyVersion: 3.1 Exclude: - "tmp/**/*" - "vendor/**/*" diff --git a/test/tomo/plugin/nvm/tasks_test.rb b/test/tomo/plugin/nvm/tasks_test.rb index 54d7728..e5131c5 100644 --- a/test/tomo/plugin/nvm/tasks_test.rb +++ b/test/tomo/plugin/nvm/tasks_test.rb @@ -76,6 +76,6 @@ def test_install_raises_if_nvm_node_version_is_not_specified private def configure(settings={}) - Tomo::Testing::MockPluginTester.new("nvm", settings: settings) + Tomo::Testing::MockPluginTester.new("nvm", settings:) end end diff --git a/tomo-plugin-nvm.gemspec b/tomo-plugin-nvm.gemspec index 7300554..e1a54ba 100644 --- a/tomo-plugin-nvm.gemspec +++ b/tomo-plugin-nvm.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |spec| spec.summary = "A tomo plugin to manage node and yarn via nvm" spec.homepage = "https://github.com/mattbrictson/tomo-plugin-nvm" spec.license = "MIT" - spec.required_ruby_version = ">= 3.0" + spec.required_ruby_version = ">= 3.1" spec.metadata = { "bug_tracker_uri" => "https://github.com/mattbrictson/tomo-plugin-nvm/issues",