Error: no implicit conversion of Hash into Integer

Hi. I’m trying to follow the github-pages guide for jekyll. I’m not having much luck. because it keeps crashing when I run:

$ bundle exec jekyll serve     
Configuration file: /home/user/Documents/blog/docs/_config.yml
            Source: /home/user/Documents/blog/docs
       Destination: /home/user/Documents/blog/docs/_site
Incremental build: disabled. Enable with --incremental
      Generating...
       Jekyll Feed: Generating feed for posts
                    done in 0.223 seconds.
jekyll 3.9.0 | Error:  no implicit conversion of Hash into Integer
/home/user/.local/share/gem/ruby/3.0.0/gems/pathutil-0.16.2/lib/pathutil.rb:502:in `read': no implicit conversion of Hash into Integer (TypeError)
        from /home/user/.local/share/gem/ruby/3.0.0/gems/pathutil-0.16.2/lib/pathutil.rb:502:in `read'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/jekyll-3.9.0/lib/jekyll/utils/platforms.rb:75:in `proc_version'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/jekyll-3.9.0/lib/jekyll/utils/platforms.rb:40:in `bash_on_windows?'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/jekyll-3.9.0/lib/jekyll/commands/build.rb:77:in `watch'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/jekyll-3.9.0/lib/jekyll/commands/build.rb:43:in `process'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/jekyll-3.9.0/lib/jekyll/commands/serve.rb:93:in `block in start'

I installed bundle and jekyll the reccomended way

The version of jekyll available in my path is 4.2.0. I discovered this by running jekyll -v. But I had to run this outside of the project directory. if I run jekyll -vin the poject directory it gives the following output

$ jekyll -v
/home/user/.local/share/gem/ruby/3.0.0/gems/bundler-2.2.16/lib/bundler/runtime.rb:302:in `check_for_activated_spec!': You have already activated i18n 1.8.10, but your Gemfile requires i18n 0.9.5. Prepending `bundle exec` to your command may solve this. (Gem::LoadError)
        from /home/user/.local/share/gem/ruby/3.0.0/gems/bundler-2.2.16/lib/bundler/runtime.rb:31:in `block in setup'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/bundler-2.2.16/lib/bundler/spec_set.rb:152:in `each'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/bundler-2.2.16/lib/bundler/spec_set.rb:152:in `each'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/bundler-2.2.16/lib/bundler/runtime.rb:26:in `map'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/bundler-2.2.16/lib/bundler/runtime.rb:26:in `setup'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/bundler-2.2.16/lib/bundler.rb:148:in `setup'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/jekyll-4.2.0/lib/jekyll/plugin_manager.rb:52:in `require_from_bundler'
        from /home/user/.local/share/gem/ruby/3.0.0/gems/jekyll-4.2.0/exe/jekyll:11:in `<top (required)>'
        from /home/user/.local/share/gem/ruby/3.0.0/bin/jekyll:23:in `load'
        from /home/user/.local/share/gem/ruby/3.0.0/bin/jekyll:23:in `<main>'

Any ideas why this is?

Thank you

1 Like

Github-Pages uses Jekyll 3.9, which isn’t compatible with Ruby 3. Downgrading to Ruby 2.7 should avoid the problem.

1 Like

Yes agree to Ruby 2.7. And don’t use plain global jekyll which is 4.

Within your project only use bundle exec jekyll which 3.9 and that is the appropriate version for GH Pages.

If you still have issues, check your config and frontmatter and any references to paths in your files. It looks like an unexpected data type on your code. But then again it might not be your code and it is a system issue.

If you can move all your content of your repo temporarily to another directory so you only have Gemfile, vendor and an almost empty index.md (not even config), then you can run the serve command there and then you’ll see that Jekyll can work alone. Then start bringing your code back in to the directory and see which file causes a break if at all.

You can also setup a new directory locally to test Jekyll itself using a template

cd my-repo
bundle exec jekyll new ~/repos/test
cd !$   # Same as cd ~/repos/test

# maybe bundle install steps.
# ...

bundle exec jekyll serve --trace

Please provide a repo link too if you figure out that you can get Jekyll to run for a new project but not your existing one.

The error is in Jekyll Manager

So disable this line in Gemfile and serve again

gem 'jekyll-manager', group: :jekyll_plugins

Also I recommend deleting Node modules and adding dir to gitignore. You don’t need to add that to git.

Thanks. I installed the appropriate versions.

1 Like

I have the same error, I don’t use GitHub pages and I don’t have jekyll-manager in Gemfile.

I use:

bundle exec jekyll serve

and Jekyll’s serve doesn’t work. Any tips on how to make it work? Or is deleting Jekyll and use something else the only option? I want to migrate to Eleventy that just works and use Node instead of Ruby that keep adding breaking changes that prevent Jekyll to run.

PS: I use Fedora.

I would open a new thread and post your full output and a link to your repo if possible.

Or use something else, keep in mind we’re all just here volunteering to try and help others, no one is going to stop you from trying something else.

It seems it’s not documented but Jekyll doesn’t work fully with Ruby 3.0. At least on Linux because of some dependency:

https://bbs.archlinux.org/viewtopic.php?id=265534

Mainly pathutil.

On my distro, I can’t get ruby2.7 easily (void linux).
When I bundle exec jekyll serve, it works, but I get that error and html is not templated, resulting in blank pages.

➜ bundle exec jekyll serve
Configuration file: /home/user/dev/eoli3n.github.io/_config.yml
To use retry middleware with Faraday v2.0+, install `faraday-retry` gem
            Source: /home/user/dev/eoli3n.github.io
       Destination: /home/user/dev/eoli3n.github.io/_site
 Incremental build: disabled. Enable with --incremental
      Generating... 
Error reading file /home/user/dev/eoli3n.github.io/vendor/bundle/ruby/3.1.0/gems/jekyll-gallery-generator-1.2.3/lib/gallery_page.html: no implicit conversion of Hash into Integer 

Fromages: best_image  not found!
Error reading file /home/user/dev/eoli3n.github.io/vendor/bundle/ruby/3.1.0/gems/jekyll-gallery-generator-1.2.3/lib/gallery_page.html: no implicit conversion of Hash into Integer 
No EXIF data in photos/oven/oven2.png
No EXIF data in photos/oven/oven.png
No EXIF data in photos/oven/oven3.png
No EXIF data in photos/oven/oven1.png
Oven 6/6 images
Error reading file /home/user/dev/eoli3n.github.io/vendor/bundle/ruby/3.1.0/gems/jekyll-gallery-generator-1.2.3/lib/gallery_page.html: no implicit conversion of Hash into Integer 

Pains: best_image  not found!
Error reading file /home/user/dev/eoli3n.github.io/vendor/bundle/ruby/3.1.0/gems/jekyll-gallery-generator-1.2.3/lib/gallery_page.html: no implicit conversion of Hash into Integer 
Pizzas 64/64 images
Error reading file /home/user/dev/eoli3n.github.io/vendor/bundle/ruby/3.1.0/gems/jekyll-gallery-generator-1.2.3/lib/gallery_index.html: no implicit conversion of Hash into Integer 
       Jekyll Feed: Generating feed for posts
                    done in 1.435 seconds.
 Auto-regeneration: enabled for '/home/user/dev/eoli3n.github.io'
    Server address: http://127.0.0.1:4000/
  Server running... press ctrl-c to stop.

Is this that same ruby version problem ?

➜ ruby -v
ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x86_64-linux]

The same error has occurred to me after upgrading my system from Debian 11 to 12 (which upgraded Ruby from 2.7 to 3.1).

However, I was able to resolve the issue without reinstalling Ruby 2.7 by following the instructions on this page of the GitHub documentation.

In particular, from within the project folder, I first executed bundle add webrick (to install a dependency missing from Ruby 3.0 or later), then bundle update github-pages (to update all relevant gems). Afterwards bundle exec jekyll serve worked for me without any errors.

Note: Before coming across the doc-page linked above, as part of the troubleshooting process, I also restored several installed gems to pristine condition. In case of the gems with associated executables in the folder $GEM_HOME/bin I also added the option -E to have their shebangs updated from #!/usr/bin/env ruby2.7 to #!/usr/bin/env ruby3.1. (If Ruby was already installed on your system before those gems, then this step is probably not necessary.)

1 Like