Sha256: 983262f0e65929d2dbe02bd507f6daa1d56074eb07f35f341832a81496356001
Contents?: true
Size: 493 Bytes
Versions: 10
Compression:
Stored size: 493 Bytes
Contents
#!/usr/bin/env ruby require 'fileutils' include FileUtils # path to your application root. APP_ROOT = File.expand_path('..', __dir__) def system!(*args) puts "Run: #{args.join(' ')}" system(*args) || abort("\n== Command #{args} failed ==") end chdir APP_ROOT do puts "\n== Performing setup ==" system!('./bin/setup') puts "\n== Run test suite ==" # DEV: There are no RSpec tests right now. # Re-enable this when we have something worth testing. # system!('rspec') end
Version data entries
10 entries across 7 versions & 1 rubygems