Merge pull request #30 from arminius-smh/fix-deployment

Fix Deployment
This commit is contained in:
Pim Snel 2024-02-11 15:01:53 +00:00 committed by GitHub
commit d38a185ed2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ jobs:
- uses: ruby/setup-ruby@v1 - uses: ruby/setup-ruby@v1
with: with:
ruby-version: 2.7 ruby-version: 3.3
#bundler-cache: true #bundler-cache: true
- run: | - run: |

View File

@ -1,11 +1,11 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
mini_portile2 (2.6.1) mini_portile2 (2.8.5)
nokogiri (1.12.5) nokogiri (1.16.2)
mini_portile2 (~> 2.6.1) mini_portile2 (~> 2.8.2)
racc (~> 1.4) racc (~> 1.4)
racc (1.6.0) racc (1.7.3)
PLATFORMS PLATFORMS
ruby ruby

View File

@ -3,7 +3,7 @@ require 'nokogiri'
require 'json' require 'json'
require 'pp' require 'pp'
url = 'https://nix-community.github.io/home-manager/options.html' url = 'https://nix-community.github.io/home-manager/options.xhtml'
html="" html=""
URI.open(url) do |f| URI.open(url) do |f|
html = f.read html = f.read

View File

@ -1,7 +1,7 @@
with (import <nixpkgs> {}); with (import <nixpkgs> {});
mkShell { mkShell {
buildInputs = [ buildInputs = [
ruby_2_7 ruby_3_3
]; ];
shellHook = '' shellHook = ''
mkdir -p .nix-gems mkdir -p .nix-gems