Sha256: e25a60db66929a6d5e2eecece7dd583e460c9c3ccd8b77996476873359553f5f
Contents?: true
Size: 447 Bytes
Versions: 6
Compression:
Stored size: 447 Bytes
Contents
#!/usr/bin/env ruby require 'pathname' GEM_ROOT = Pathname.new File.expand_path('..', __dir__) DUMMY_APP_ROOT = Pathname.new File.expand_path('../spec/dummy', __dir__) Dir.chdir GEM_ROOT do puts '== Installing dependencies ==' system 'gem install bundler --conservative' system 'bundle check || bundle install' puts '== Installing overcommit ==' system 'overcommit --install' end Dir.chdir DUMMY_APP_ROOT do system 'bin/setup' end
Version data entries
6 entries across 6 versions & 1 rubygems