Skip to content

Commit

Permalink
#42 Update Ruby from 3.1.1 to 3.2.2 and update all gems
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerluan authored Sep 11, 2023
2 parents 4ca2b08 + ad12c84 commit cd709e4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.1
3.2.2
12 changes: 7 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
base64 (0.1.1)
diff-lcs (1.5.0)
docile (1.4.0)
dotenv (2.8.1)
Expand All @@ -25,7 +26,7 @@ GEM
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.1)
rexml (3.2.5)
rexml (3.2.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
Expand All @@ -35,19 +36,20 @@ GEM
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.5)
rspec-mocks (3.12.6)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
rubocop (1.53.1)
rubocop (1.56.3)
base64 (~> 0.1.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.3)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.0, < 2.0)
rubocop-ast (>= 1.28.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.29.0)
Expand All @@ -58,7 +60,7 @@ GEM
rubocop (~> 1.33)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
rubocop-rspec (2.22.0)
rubocop-rspec (2.24.0)
rubocop (~> 1.33)
rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22)
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,9 @@ For a list of issues worth tackling check out: https://github.com/rogerluan/arka
Forget about 'When did release v2.1.3 go live again?' and 'Is the app ready to be tested yet?'
Statused monitors App Store Connect and send you notifications directly on Slack. Learn more: [statused.com](https://statused.com?ref=arkana)
Statused monitors App Store Connect and send you notifications directly on Slack.
Learn more: [statused.com](https://statused.com?ref=arkana)
# License
Expand Down
3 changes: 2 additions & 1 deletion spec/swift_code_generator_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
def path(arg1, arg2, arg3 = nil)
arg1and2 = File.join(arg1, arg2)
return Pathname.new(arg1and2) unless arg3
return Pathname.new(File.join(arg1and2, arg3)) if arg3

Pathname.new(File.join(arg1and2, arg3)) if arg3
end

it "should generate all necessary directories and files" do
Expand Down

0 comments on commit cd709e4

Please sign in to comment.