Sha256: ff780a03cdcfa58c4319ece980abc13fc268c78c914dfb636f76b6104887f8f1
Contents?: true
Size: 581 Bytes
Versions: 7
Compression:
Stored size: 581 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/cookbook/engine', __dir__) APP_PATH = File.expand_path('../spec/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['BUNDLE_GEMFILE']) require 'rails/all' require 'rails/engine/commands'
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
cookbook-0.1.6 | bin/rails |
cookbook-0.1.5 | bin/rails |
cookbook-0.1.4 | bin/rails |
cookbook-0.1.3 | bin/rails |
cookbook-0.1.2 | bin/rails |
cookbook-0.1.1 | bin/rails |
cookbook-0.1.0 | bin/rails |