Skip to content
Open
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
33 changes: 15 additions & 18 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,34 +1,31 @@
source "https://rubygems.org"

gem 'jekyll', ">= 4.1.1"
ruby ">= 3.1"

gem "posix-spawn", github: "https://github.com/rtomayko/posix-spawn/pull/93"
# sass-embeded in 3.0.0 pulls google-protobuf which fails to compile
gem "jekyll", ">= 4.1.1", "< 5.0"

gem "posix-spawn"

# jekyll-sass-converter 3 pulls sass-embedded; staying < 3 as you noted
gem "jekyll-sass-converter", "< 3"

group :jekyll_plugins do
gem 'jekyll-algolia'
gem 'jekyll-relative-links'
gem 'jekyll-seo-tag'
gem 'jekyll-sitemap'
gem 'jekyll-redirect-from'
# "jekyll-algolia" is deprecated and pins old Nokogiri
gem "jekyll-relative-links"
gem "jekyll-seo-tag"
gem "jekyll-sitemap"
gem "jekyll-redirect-from"
gem "jekyll-last-modified-at"
end

gem 'jemoji'
gem "jemoji"

group :dev do
gem 'jekyll-watch'
gem "jekyll-watch"
end

# For googlescholar.rb
gem "nokogiri"
gem "open-uri"

# Maybe in the future
# https://rubygems.org/gems/jekyll-scholar
# https://rubygems.org/gems/jekyll-assets
# https://rubygems.org/gems/jekyll-minifier
gem "nokogiri", "~> 1.18"

# For current Ruby installations (3+?)
# "open-uri" removed: open-uri is part of Ruby stdlib
gem "webrick"
Loading