Skip to content

Commit

Permalink
feat(dev): prepare for 3.4.0
Browse files Browse the repository at this point in the history
- include 3.4.0-preview2 in GitHub workflow
- add gem 'csv' to dependency list → it is no longer part of the default
  gems / stdlib
  • Loading branch information
bbenno committed Nov 21, 2024
1 parent f2eb062 commit 0ce3925
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- '3.1'
- '3.2'
- '3.3'
- '3.4.0-preview2'

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ PATH
remote: .
specs:
human_languages (0.8.0)
csv (~> 3.0)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
csv (3.3.0)
json (2.8.2)
language_server-protocol (3.17.0.3)
minitest (5.25.1)
Expand Down Expand Up @@ -50,4 +52,4 @@ DEPENDENCIES
rubocop-rake (~> 0.6.0)

BUNDLED WITH
2.3.7
2.5.6
3 changes: 1 addition & 2 deletions human_languages.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
spec.add_dependency('csv', '~> 3.0') if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.3')

# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
Expand Down

0 comments on commit 0ce3925

Please sign in to comment.