Sha256: a990c2652754cbad9e0b68d72f0aae1844371f05a3c3123998745d916da481bb
Contents?: true
Size: 389 Bytes
Versions: 48
Compression:
Stored size: 389 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true app_root = 'sandbox' unless File.exist? "#{app_root}/bin/rails" warn 'Creating the sandbox app...' Dir.chdir "#{__dir__}/.." do system "#{__dir__}/sandbox" or begin # rubocop:disable Style/AndOr warn 'Automatic creation of the sandbox app failed' exit 1 end end end Dir.chdir app_root exec 'bin/rails', *ARGV
Version data entries
48 entries across 48 versions & 15 rubygems