Sha256: 431e1ac8fc54ab716165f219bc4f6ac125c5e71c8d98a20bb57ae3845b10970e
Contents?: true
Size: 368 Bytes
Versions: 11
Compression:
Stored size: 368 Bytes
Contents
#!/usr/bin/env ruby require "fileutils" # path to dummy application root. APP_ROOT = File.expand_path("../spec/dummy", __dir__) # path to alchemy gem GEM_ROOT = File.expand_path("../", __dir__) def system!(*args) system(*args) || abort("\n== Command #{args} failed ==") end FileUtils.chdir APP_ROOT do puts "\n== Starting dummy app ==" system! "bin/dev" end
Version data entries
11 entries across 11 versions & 1 rubygems