Skip to content

Commit d5c8ee0

Browse files
Merge pull request ruby-hl7#154 from ruby-hl7/chore/bump-ruby-3.4
Chore: Bump Ruby to 3.4.1
2 parents adb3037 + dad3e1b commit d5c8ee0

File tree

7 files changed

+5
-5
lines changed

7 files changed

+5
-5
lines changed

.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Ruby
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: 3.3
20+
ruby-version: 3.4
2121
bundler-cache: true # 'bundle install' and cache
2222
- name: Run Rubocop linter
2323
run: bundle exec rubocop

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
matrix:
1818
ruby-version:
1919
- head
20+
- '3.4'
2021
- '3.3'
2122
- '3.2'
2223
- '3.1'

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require:
1717
- rubocop-rspec
1818

1919
AllCops:
20-
TargetRubyVersion: 3.3
20+
TargetRubyVersion: 3.4
2121
NewCops: enable
2222
Exclude:
2323
- tmp/**/*

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.5
1+
3.4.1

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ source "https://rubygems.org"
55
gemspec
66

77
group :development, :test do
8+
gem "pry"
89
gem "rubocop", "~> 1.66"
910
gem "rubocop-performance", "~> 1.22"
1011
gem "rubocop-rake", "~> 0.6"

ruby-hl7.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Gem::Specification.new do |s|
2626
s.license = "MIT"
2727

2828
s.add_development_dependency "bundler", "~> 2.5"
29-
s.add_development_dependency "pry"
3029
s.add_development_dependency "rake", ">= 12.3.3"
3130
s.add_development_dependency "rake-contrib"
3231
s.add_development_dependency "rdoc", "~> 6.3"

spec/spec_helper.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# ruby-hl7 loads the rest of the files in lib
1313
require File.expand_path("../lib/ruby-hl7", __dir__)
1414
require File.expand_path("../lib/test/hl7_messages", __dir__)
15-
require "pry"
1615

1716
RSpec.configure do |config|
1817
config.include TimeFormatterHelper, :type => :helper

0 commit comments

Comments
 (0)