Skip to content

Commit

Permalink
Fix rss base url and lock deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Aristarhys committed Sep 29, 2023
1 parent 604686b commit 59c9c78
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 62 deletions.
44 changes: 8 additions & 36 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,40 +1,12 @@
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
# gem "jekyll", "~> 4.3.1"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
# gem "minima", "~> 2.5"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
gem "github-pages", "~> 228", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.15.1"
gem "jekyll-remote-theme", "~> 0.4.3"
end

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", ">= 1", "< 3"
gem "tzinfo-data"
end

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
gem "github-pages", group: :jekyll_plugins

# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

gem "webrick", "~> 1.8.1"

gem "faraday-retry", "~> 2.2.0"
group :jekyll_plugins do
gem "jekyll-feed"
gem "jekyll-remote-theme"
gem "jekyll-redirect-from"
end

gem 'jekyll-redirect-from', '~> 0.16.0'
gem "faraday-retry"
gem "webrick"
38 changes: 15 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.7.2)
activesupport (7.0.8)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
addressable (2.8.5)
public_suffix (>= 2.0.2, < 6.0)
base64 (0.1.1)
coffee-script (2.4.1)
coffee-script-source
execjs
Expand All @@ -23,15 +24,15 @@ GEM
ethon (0.16.0)
ffi (>= 1.15.0)
eventmachine (1.2.7)
execjs (2.8.1)
faraday (2.7.10)
execjs (2.9.1)
faraday (2.7.11)
base64
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-net_http (3.0.2)
faraday-retry (2.2.0)
faraday (~> 2.0)
ffi (1.15.5)
ffi (1.15.5-x64-unknown)
ffi (1.16.2)
forwardable-extended (2.6.0)
gemoji (3.0.1)
github-pages (228)
Expand Down Expand Up @@ -213,7 +214,7 @@ GEM
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.19.0)
minitest (5.20.0)
nokogiri (1.15.4)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
Expand Down Expand Up @@ -248,31 +249,22 @@ GEM
ethon (>= 0.9.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
tzinfo-data (1.2023.3)
tzinfo (>= 1.0.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.8.2)
unicode-display_width (1.8.0)
wdm (0.1.1)
webrick (1.8.1)

PLATFORMS
x64-unknown
x64-unknown
x86_64-linux
ruby

DEPENDENCIES
faraday-retry (~> 2.2.0)
github-pages (~> 228)
http_parser.rb (~> 0.6.0)
jekyll-feed (~> 0.15.1)
jekyll-redirect-from (~> 0.16.0)
jekyll-remote-theme (~> 0.4.3)
tzinfo (>= 1, < 3)
tzinfo-data
wdm (~> 0.1.1)
webrick (~> 1.8.1)
faraday-retry
github-pages
jekyll-feed
jekyll-redirect-from
jekyll-remote-theme
webrick

BUNDLED WITH
2.3.25
2.1.4
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

1. Install Ruby 3.1+
2. `gem install bundler`
3. `bundle install && bundle update --all`
3. `bundle install`
4. `bundle exec jekyll serve --livereload`
5. Navigate to [http://localhost:4000](http://localhost:4000)
5. Navigate to http://localhost:4000
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ author:
name: 7CoreLoops
email: [email protected]
description: The quick red fox jumps over the lazy wolf in space and time
url: "http://www.7coreloops.net"
url: "https://aristarhys.github.io"

# Build settings
incremental: false
Expand Down

0 comments on commit 59c9c78

Please sign in to comment.