Skip to content

Commit

Permalink
Merge pull request #49 from apainintheneck/update-supported-versions
Browse files Browse the repository at this point in the history
Update supported versions
  • Loading branch information
apainintheneck authored Mar 28, 2024
2 parents 019c2ec + db20173 commit ab2c4d9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
platform: ["ubuntu-latest", "macos-latest"]
ruby: [2.7, 3.0, 3.1, 3.2, 3.3]
ruby: [3.0, 3.1, 3.2, 3.3]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Git repository
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0

Layout/FirstArrayElementIndentation:
Enabled: true
Expand Down
2 changes: 1 addition & 1 deletion atlasq.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
Query for regional info and see which countries show up.
DESCRIPTION
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.required_ruby_version = ">= 3.0"

spec.metadata = {
"homepage_uri" => "https://github.com/apainintheneck/atlasq/",
Expand Down
3 changes: 0 additions & 3 deletions exe/atlasq
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ debug = true if ARGV.delete("-d")
debug = true if ARGV.delete("--debug")
ENV["ATLASQ_DEBUG"] = "1" if debug

# Avoid warnings on Ruby 2.7 related to pattern matching.
Warning[:experimental] = false

$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
require "atlasq"

Expand Down

0 comments on commit ab2c4d9

Please sign in to comment.