Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

windows: fix gem: --no-document in gemrc #398

Merged
merged 3 commits into from
Sep 18, 2024
Merged

Commits on Sep 17, 2024

  1. windows: fix gem: --no-document for gemrc

    In the previous versions, append gem: --no-document
    for c:\ProgramData\gemrc, but it does not work as expected
    because the default gemrc content is different as we thought.
    
    So, we should override explicitly by gem: --no-document here.
    
      C:\>type c:\ProgramData\gemrc
      # This is the system wide config file for Rubygems.
      # It is generated by RubyInstaller as a security measure.
      # Feel free to add any rubygems config options as described on:
      #    https://docs.ruby-lang.org/en/3.1/Gem/ConfigFile.html
      # But do not delete this file as otherwise it could be hijacked by
      # another user in a multi-user environment.
      ---
      {}
      gem: --no-document
    
      C:\>echo gem: --no-document > c:\ProgramData\gemrc
    
      C:\>type c:\ProgramData\gemrc
      gem: --no-document
    
      C:\>gem install json
      Fetching json-2.7.2.gem
      Temporarily enhancing PATH for MSYS/MINGW...
      Building native extensions. This could take a while...
      Successfully installed json-2.7.2
      1 gem installed
    
    Signed-off-by: Kentaro Hayashi <[email protected]>
    kenhys committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    fe3d430 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Update Dockerfile.template.erb

    Co-authored-by: Daijiro Fukuda <[email protected]>
    Signed-off-by: Kentaro Hayashi <[email protected]>
    kenhys and daipom committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    263a7ce View commit details
    Browse the repository at this point in the history
  2. Re-generate Dockerfile

    Signed-off-by: Kentaro Hayashi <[email protected]>
    kenhys committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    fe55631 View commit details
    Browse the repository at this point in the history