Skip to content

Commit

Permalink
Remove support for Ruby < 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
noteflakes committed Apr 19, 2024
1 parent 10abb62 commit dab1e1e
Show file tree
Hide file tree
Showing 3 changed files with 4 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 @@ -8,7 +8,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['3.0', 3.1, 3.2, 3.3, head]
ruby: [3.2, 3.3, head]

name: >-
${{matrix.os}}, ${{matrix.ruby}}
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ hello.render('world')

## Installing Papercraft

**Note**: Papercraft requires Ruby version 3.2 or newer.

Using bundler:

```ruby
Expand Down
2 changes: 1 addition & 1 deletion papercraft.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--title", "Papercraft", "--main", "README.md"]
s.extra_rdoc_files = ["README.md", "papercraft.png"]
s.require_paths = ["lib"]
s.required_ruby_version = '>= 3.0'
s.required_ruby_version = '>= 3.2'

s.add_runtime_dependency 'sirop', '~>0.3'
s.add_runtime_dependency 'escape_utils', '~>1.3.0'
Expand Down

0 comments on commit dab1e1e

Please sign in to comment.