method

ci_packages

rails latest stable - Class: Rails::Generators::AppBase

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

ci_packages()
private

No documentation available.

# File railties/lib/rails/generators/app_base.rb, line 634
      def ci_packages
        dockerfile_build_packages - [
          # GitHub Actions doesn't have build-essential,
          # but it's a meta-packages and all its dependencies are already installed.
          "build-essential",
          "git",
          "pkg-config",
          "libyaml-dev",
          "unzip",
          "python-is-python3",
        ]
      end