Sha256: 0e8fe3aa7ee05ff2fea3dbc4c8d339329d02297c1ef949fb42db9da79c940877
Contents?: true
Size: 377 Bytes
Versions: 41
Compression:
Stored size: 377 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/rails server" end
Version data entries
41 entries across 41 versions & 1 rubygems