diff options
| -rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
| -rw-r--r-- | .rubocop.yml | 2 | ||||
| -rw-r--r-- | .travis.yml | 1 | ||||
| -rw-r--r-- | spandx.gemspec | 2 |
4 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0be1908..5df3da6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: [ '2.4', '2.5', '2.6', '2.7' ] + ruby: [ '2.5', '2.6', '2.7' ] name: Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v2 diff --git a/.rubocop.yml b/.rubocop.yml index fc8be30..8c50416 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -6,7 +6,7 @@ AllCops: - 'pkg/**/*' - 'spec/fixtures/**/*' - 'vendor/bundle/**/*' - TargetRubyVersion: 2.4 + TargetRubyVersion: 2.5 Layout/ArgumentAlignment: EnforcedStyle: with_fixed_indentation diff --git a/.travis.yml b/.travis.yml index 4b46572..2c78be9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: ruby cache: bundler rvm: - - 2.4 - 2.5 - 2.6 - 2.7 diff --git a/spandx.gemspec b/spandx.gemspec index 91359dc..07ae286 100644 --- a/spandx.gemspec +++ b/spandx.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |spec| spec.description = 'A ruby interface to the SPDX catalogue. With a CLI that can scan project lockfiles to list out software licenses for each dependency' spec.homepage = 'https://github.com/spandx/spandx' spec.license = 'MIT' - spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0') + spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0') spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/spandx/spandx' |
