rails-latex 2.3.4 → 2.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/tests.yml +12 -7
- data/README.rdoc +1 -0
- data/lib/rails-latex/version.rb +1 -1
- data/rails-latex.gemspec +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 841d8ac90b93a89362a1048b6d5ee028cec56df028e2be75cb6056276fcec428
|
4
|
+
data.tar.gz: 9f3ed60e35109a04c7a8244903992669bf96b78b86959039f918b9caf427bc7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37a9462efa592544865706a32e32e8d4b767278cf8bbd4c1a2d2695536ffecad6099b17e852f85d1b3ef4551c7a47693b6ea0f90c1e0ce041afa6bb0f334fb56
|
7
|
+
data.tar.gz: 1ffd731f648b19ec37cf99b50796f63f353c72f5e83fc7260292c49c141051314bd24ace0846dc0818c4f14b76bc5ddbfa3fe017b8c3905ce18fd86e4ac651d8
|
data/.github/workflows/tests.yml
CHANGED
@@ -1,25 +1,30 @@
|
|
1
|
+
---
|
1
2
|
name: Basic test suite
|
2
3
|
|
4
|
+
# yamllint disable-line rule:truthy
|
3
5
|
on:
|
4
6
|
push:
|
5
|
-
branches:
|
7
|
+
branches:
|
8
|
+
- master
|
6
9
|
pull_request:
|
7
|
-
branches:
|
10
|
+
branches:
|
11
|
+
- master
|
8
12
|
|
9
13
|
jobs:
|
10
|
-
|
11
14
|
ruby:
|
12
15
|
runs-on: ubuntu-latest
|
13
16
|
strategy:
|
14
17
|
matrix:
|
15
|
-
ruby-version:
|
18
|
+
ruby-version:
|
19
|
+
- '3.4'
|
20
|
+
- '3.3'
|
21
|
+
- '3.2'
|
16
22
|
|
17
23
|
steps:
|
18
|
-
|
19
|
-
- uses: actions/checkout@v2
|
24
|
+
- uses: actions/checkout@v4
|
20
25
|
|
21
26
|
- name: Install dependencies
|
22
|
-
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
|
23
28
|
|
24
29
|
- name: Setup ruby
|
25
30
|
uses: ruby/setup-ruby@v1
|
data/README.rdoc
CHANGED
data/lib/rails-latex/version.rb
CHANGED
data/rails-latex.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
|
-
spec.add_runtime_dependency 'rails', '>= 3.0.0', '<
|
22
|
+
spec.add_runtime_dependency 'rails', '>= 3.0.0', '< 9'
|
23
23
|
spec.add_development_dependency "RedCloth", "~> 4.3"
|
24
24
|
spec.add_development_dependency "bundler", "~> 2.0"
|
25
25
|
spec.add_development_dependency "rake", "~> 13"
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-latex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Baier
|
8
8
|
- Geoff Jacobsen
|
9
|
-
autorequire:
|
10
9
|
bindir: exe
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rails
|
@@ -20,7 +19,7 @@ dependencies:
|
|
20
19
|
version: 3.0.0
|
21
20
|
- - "<"
|
22
21
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
22
|
+
version: '9'
|
24
23
|
type: :runtime
|
25
24
|
prerelease: false
|
26
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -30,7 +29,7 @@ dependencies:
|
|
30
29
|
version: 3.0.0
|
31
30
|
- - "<"
|
32
31
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
32
|
+
version: '9'
|
34
33
|
- !ruby/object:Gem::Dependency
|
35
34
|
name: RedCloth
|
36
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -168,7 +167,6 @@ homepage: https://github.com/amagical-net/rails-latex
|
|
168
167
|
licenses:
|
169
168
|
- MIT
|
170
169
|
metadata: {}
|
171
|
-
post_install_message:
|
172
170
|
rdoc_options: []
|
173
171
|
require_paths:
|
174
172
|
- lib
|
@@ -183,8 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
181
|
- !ruby/object:Gem::Version
|
184
182
|
version: '0'
|
185
183
|
requirements: []
|
186
|
-
rubygems_version: 3.
|
187
|
-
signing_key:
|
184
|
+
rubygems_version: 3.6.2
|
188
185
|
specification_version: 4
|
189
186
|
summary: A LaTeX to PDF rails renderer.
|
190
187
|
test_files: []
|