Skip to content

Commit

Permalink
ruby 3.2 support (#36)
Browse files Browse the repository at this point in the history
* fix: rubocop

Signed-off-by: David Looi <david@coinjar.com>

* fix: add ruby 3.2 support

Signed-off-by: David Looi <david@coinjar.com>

---------

Signed-off-by: David Looi <david@coinjar.com>
  • Loading branch information
davelooi authored Jul 7, 2023
1 parent 5c20747 commit 4d515f6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
ruby: [ '2.7', '3.1' ]
ruby: [ '2.7', '3.1', '3.2' ]

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,8 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in bsb.gemspec
gemspec

gem 'bundler', '~> 2.0'
gem 'net-ftp', '~> 0.1.3'
gem 'rake', '~> 13.0'
gem 'rubocop', '~> 1.26'
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ require 'rubocop/rake_task'
RuboCop::RakeTask.new

desc 'Run tests'
task default: :'rubocop:auto_correct'
task default: :'rubocop:autocorrect_all'
task default: :test
4 changes: 0 additions & 4 deletions bsb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.7.0'

spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'net-ftp', '~> 0.1.3'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rubocop', '~> 1.26'
spec.add_dependency 'activemodel'

# N.B. needed for periodic auto update of database.
Expand Down
2 changes: 1 addition & 1 deletion lib/bsb/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module BSB
VERSION = '1.1.3'.freeze
VERSION = '1.1.3'
end

0 comments on commit 4d515f6

Please sign in to comment.