Skip to content
Merged
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: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Install libxslt for nokogiri gem (required for version < 1.11)
run: sudo apt-get install -y libxml2-dev libxslt-dev
- name: Add --no-document option to .gemrc file to speed up bundle install
run: "echo 'gem: --no-document' > ~/.gemrc"
- name: Set up Ruby
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ gem 'importmap-rails'
gem 'jbuilder'
# Use mysql as a database option for Active Record
gem 'mysql2', '~> 0.5.6'
gem 'nokogiri', '~> 1.18', '>= 1.18.9', force_ruby_platform: true
# Use the Puma web server for local development [https://github.com/puma/puma]
gem 'puma', '~> 6.0'
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
Expand Down
Loading