diff --git a/.bundle/config b/.bundle/config new file mode 100644 index 0000000..4d3e223 --- /dev/null +++ b/.bundle/config @@ -0,0 +1,2 @@ +--- +BUNDLE_FROZEN: "false" diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index f8768b0..bc637ee 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -9,7 +9,7 @@ name: Deploy Jekyll site to Pages on: # Runs on pushes targeting the default branch push: - branches: ["main"] + branches: ["*"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/Gemfile b/Gemfile index 071e603..ca19f76 100644 --- a/Gemfile +++ b/Gemfile @@ -7,15 +7,15 @@ source "https://rubygems.org" # # This will help ensure the proper Jekyll version is running. # Happy Jekylling! -gem "jekyll", "~> 4.4.0" +gem "jekyll", ">= 4.4.0" # This is the default theme for new Jekyll sites. You may change this to anything you like. -gem "minima", "~> 2.5" +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", group: :jekyll_plugins # If you have any plugins, put them here! group :jekyll_plugins do - gem "jekyll-feed", "~> 0.12" + gem "jekyll-feed", ">= 0.12" end # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem @@ -26,11 +26,11 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do end # Performance-booster for watching directories on Windows -gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin] +gem "wdm", ">= 0.1", :platforms => [:mingw, :x64_mingw, :mswin] # 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 "http_parser.rb", ">= 0.6.0", :platforms => [:jruby] # Francesco's customizations: