Sha256: e4a138ba50ea42e253d6e6de75c660bbf75e40354cfa21e6f4b670d120a3aa48
Contents?: true
Size: 428 Bytes
Versions: 166
Compression:
Stored size: 428 Bytes
Contents
# frozen_string_literal: true require "rails/app_loader" # If we are inside a Rails application this method performs an exec and thus # the rest of this script is not run. Rails::AppLoader.exec_app require "rails/ruby_version_check" Signal.trap("INT") { puts; exit(1) } require "rails/command" if ARGV.first == "plugin" ARGV.shift Rails::Command.invoke :plugin, ARGV else Rails::Command.invoke :application, ARGV end
Version data entries
166 entries across 153 versions & 12 rubygems