Skip to content

Commit 2e77095

Browse files
authored
Merge pull request #73 from macite/master
Minor update to support rails 8
2 parents e36fb3c + 5671e07 commit 2e77095

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
strategy:
1717
matrix:
1818
ruby-version:
19+
- '3.4'
20+
- '3.3'
1921
- '3.2'
20-
- '3.1'
21-
- '3.0'
22-
- '2.7'
22+
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- name: Install dependencies
27-
run: sudo apt-get install -y texlive texlive-xetex poppler-utils
27+
run: sudo apt-get update && sudo apt-get install -y texlive texlive-xetex poppler-utils
2828

2929
- name: Setup ruby
3030
uses: ruby/setup-ruby@v1

lib/rails-latex/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module RailsLatex
2-
VERSION = "2.3.4"
2+
VERSION = "2.3.5"
33
end

rails-latex.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
1919
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2020
spec.require_paths = ["lib"]
2121

22-
spec.add_runtime_dependency 'rails', '>= 3.0.0', '< 8'
22+
spec.add_runtime_dependency 'rails', '>= 3.0.0', '< 9'
2323
spec.add_development_dependency "RedCloth", "~> 4.3"
2424
spec.add_development_dependency "bundler", "~> 2.0"
2525
spec.add_development_dependency "rake", "~> 13"

0 commit comments

Comments
 (0)