Skip to content

Commit

Permalink
[orangelight] Ruby 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sandbergja committed Jan 10, 2025
1 parent 2faf25f commit dfabbaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion group_vars/orangelight/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ passenger_extra_http_config:
- "passenger_preload_bundler on;"
passenger_ruby: "/usr/local/bin/ruby"
install_ruby_from_source: true
ruby_version_override: "ruby-3.3.6"
ruby_version_override: "ruby-3.4.1"
ruby_yjit: true
pg_hba_contype: "host"
pg_hba_method: "md5"
Expand Down
6 changes: 3 additions & 3 deletions roles/orangelight/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
# tasks file for roles/orangelight

- name: orangelight | update rubygems
ansible.builtin.command: gem update --system 3.5.10
ansible.builtin.command: gem update --system 3.6.1
become: true
register: update_rubygems
changed_when: '"Latest version already installed. Done." not in update_rubygems.stdout'
tags: rubygems

- name: orangelight | install default bundler
ansible.builtin.command: gem install --default bundler:2.5.10
ansible.builtin.command: gem install --default bundler:2.6.1
become: true
register: install_default_bundler
changed_when: '"Fetching bundler-2.5.10.gem" in install_default_bundler.stdout'
changed_when: '"Fetching bundler-2.6.1.gem" in install_default_bundler.stdout'
tags: rubygems

- name: orangelight | remove old default bundler
Expand Down

0 comments on commit dfabbaf

Please sign in to comment.