Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
ruby: ["3.1", "3.2", "3.3"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby 3.1.4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1.4"
ruby-version: "3.2.9"

- name: Build
run: |
Expand Down
26 changes: 19 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
bolognese (2.4.0)
activesupport (>= 4.2.5)
activesupport (= 7.2.3)
benchmark_methods (~> 0.7)
bibtex-ruby (>= 5.1.0)
builder (~> 3.2, >= 3.2.2)
Expand All @@ -29,17 +29,26 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.7.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
activesupport (7.2.3)
base64
benchmark (>= 0.3)
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
logger (>= 1.4.2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
base64 (0.3.0)
benchmark (0.5.0)
benchmark_methods (0.7)
bibtex-ruby (6.0.0)
latex-decode (~> 0.0)
bigdecimal (3.3.1)
builder (3.2.4)
byebug (11.1.3)
citeproc (1.0.10)
Expand All @@ -48,7 +57,8 @@ GEM
citeproc (~> 1.0, >= 1.0.9)
csl (~> 1.6)
colorize (0.8.1)
concurrent-ruby (1.2.2)
concurrent-ruby (1.3.5)
connection_pool (2.5.5)
crack (0.4.5)
rexml
crass (1.0.6)
Expand All @@ -59,6 +69,7 @@ GEM
csl (~> 1.0)
diff-lcs (1.5.0)
docile (1.4.0)
drb (2.2.3)
ebnf (2.3.3)
htmlentities (~> 4.3)
rdf (~> 3.2)
Expand Down Expand Up @@ -111,6 +122,7 @@ GEM
optimist (~> 3)
latex-decode (0.4.0)
link_header (0.0.8)
logger (1.7.0)
loofah (2.21.3)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
Expand Down Expand Up @@ -194,6 +206,7 @@ GEM
rspec (~> 3)
ruby2_keywords (0.0.5)
scanf (1.0.0)
securerandom (0.4.1)
simplecov (0.17.1)
docile (~> 1.1)
json (>= 1.8, < 3)
Expand All @@ -214,7 +227,6 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
zeitwerk (2.6.8)
zlib (2.1.1)

PLATFORMS
Expand Down
5 changes: 2 additions & 3 deletions bolognese.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@ Gem::Specification.new do |s|
s.version = Bolognese::VERSION
s.extra_rdoc_files = ["README.md"]
s.license = 'MIT'
s.required_ruby_version = ['>=3.0']
s.required_ruby_version = ['>= 3.1', '<= 3.3.10']

# Declare dependencies here, rather than in the Gemfile
s.add_dependency 'maremma', '~> 5.0'
#s.add_dependency 'faraday', '~> 0.17.3'
s.add_dependency 'nokogiri', '~> 1.16', '>= 1.16.2'
s.add_dependency 'loofah', '~> 2.0', '>= 2.0.3'
s.add_dependency 'builder', '~> 3.2', '>= 3.2.2'
s.add_dependency 'activesupport', '>= 4.2.5'
s.add_dependency 'activesupport', '7.2.3'
s.add_dependency 'bibtex-ruby', '>= 5.1.0'
s.add_dependency 'thor', '>= 0.19'
s.add_dependency 'colorize', '~> 0.8.1'
Expand Down