17 lines
518 B
Ruby
Executable File
17 lines
518 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
ENV["RAILS_ENV"] ||= "development"
|
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__)
|
|
# Enable the `package_json` gem to allow the use scripts defined in `package.json`.
|
|
# See https://github.com/shakacode/shakapacker/issues/371
|
|
ENV["SHAKAPACKER_USE_PACKAGE_JSON_GEM"] ||= "true"
|
|
|
|
require "bundler/setup"
|
|
require "shakapacker"
|
|
require "shakapacker/dev_server_runner"
|
|
|
|
APP_ROOT = File.expand_path("..", __dir__)
|
|
Dir.chdir(APP_ROOT) do
|
|
Shakapacker::DevServerRunner.run(ARGV)
|
|
end
|