Skip to content

Commit

Permalink
Merge pull request #132 from marocchino/ruby3-4
Browse files Browse the repository at this point in the history
Support Ruby 3.4
  • Loading branch information
andrehjr authored Jan 19, 2025
2 parents b88e71f + efb5163 commit d9b2718
Show file tree
Hide file tree
Showing 9 changed files with 365 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
ruby: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3]
ruby: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4]

runs-on: ${{ matrix.os }}

Expand Down
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,8 @@ desc "Generate the latest Ruby 3.3 docs"
task "gen33" do
generate_docs_for('33', Latest.ruby33)
end

desc "Generate the latest Ruby 3.4 docs"
task "gen34" do
generate_docs_for('34', Latest.ruby34)
end
357 changes: 357 additions & 0 deletions lib/pry-doc/docs/34/checksums

Large diffs are not rendered by default.

Empty file added lib/pry-doc/docs/34/complete
Empty file.
Binary file added lib/pry-doc/docs/34/object_types
Binary file not shown.
Binary file added lib/pry-doc/docs/34/objects/root.dat
Binary file not shown.
Binary file added lib/pry-doc/docs/34/proxy_types
Binary file not shown.
2 changes: 1 addition & 1 deletion pry-doc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ DESCR

s.add_dependency 'yard', "~> 0.9.11"
s.add_dependency 'pry', "~> 0.11"
s.add_development_dependency 'latest_ruby', '~> 3.3'
s.add_development_dependency 'latest_ruby', '~> 3.4'
s.add_development_dependency 'rspec', '~> 3.5'
s.add_development_dependency 'rake', "~> 13.0"
end
1 change: 1 addition & 0 deletions spec/pry-doc_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
require 'set'
require 'fileutils'
require 'socket'
require 'logger'

puts "Testing pry-doc version #{PryDoc::VERSION}..."
puts "Ruby version: #{RUBY_VERSION}"
Expand Down

0 comments on commit d9b2718

Please sign in to comment.