Skip to content

Commit

Permalink
Add support for Ruby 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gbp committed Jan 17, 2023
1 parent 13af63b commit e79c8bb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
include:
- { ruby: '3.0', postgres: 13.5 }
- { ruby: '3.1', postgres: 13.5 }
- { ruby: '3.2', postgres: 13.5 }

services:
postgres:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Every Alaveteli commit is tested by GitHub Actions on the [following Ruby platfo

* ruby-3.0
* ruby-3.1
* ruby-3.2

If you use a ruby version management tool (such as RVM or .rbenv) and want to use the default development version used by the Alaveteli team (currently 3.0.4), you can create a `.ruby-version` symlink with a target of `.ruby-version.example` to switch to that automatically in the project directory.

Expand Down
1 change: 1 addition & 0 deletions doc/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Highlighted Features

* Add support for Ruby 3.2 (Graeme Porteous)
* Add support for Ruby 3.1 (Graeme Porteous)
* Upgrade to Rails 7 (Graeme Porteous)
* Improve processing of large PDF attachments (Graeme Porteous)
Expand Down
2 changes: 2 additions & 0 deletions script/handle-mail-replies
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash

export RUBYOPT="-W0"

cd "`dirname "${BASH_SOURCE[0]}"`"
exec bundle exec ./handle-mail-replies.rb "$@"
2 changes: 2 additions & 0 deletions script/load-mail-server-logs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

export RUBYOPT="-W0"

LOC="`dirname "${BASH_SOURCE[0]}"`"/..
cd "$LOC"

Expand Down
2 changes: 2 additions & 0 deletions script/mailin
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

export RUBYOPT="-W0"

# Wire this script to receive incoming email for request responses.

INPUT=$(mktemp -t foi-mailin-mail-XXXXXXXX)
Expand Down

0 comments on commit e79c8bb

Please sign in to comment.