Sha256: 69c5f514a9589531d51e0052da9194f66ccdbe74634cbe3c5ac061ffbcd681b8
Contents?: true
Size: 605 Bytes
Versions: 21
Compression:
Stored size: 605 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true # This command will automatically be run when you run "rails" with Rails gems # installed from the root of your application. ENGINE_ROOT = File.expand_path("..", __dir__) ENGINE_PATH = File.expand_path("../lib/neeto_commons_backend/engine", __dir__) APP_PATH = File.expand_path("../test/dummy/config/application", __dir__) # Set up gems listed in the Gemfile. ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) require "bundler/setup" if File.exist?(ENV.fetch("BUNDLE_GEMFILE", nil)) require "rails/all" require "rails/engine/commands"
Version data entries
21 entries across 21 versions & 1 rubygems