Sha256: 6226c2510920b7dc4502fd5ba7a035c4bf73164b7677bd2e0ab625fd903cad14
Contents?: true
Size: 517 Bytes
Versions: 51
Compression:
Stored size: 517 Bytes
Contents
desc 'rake TASK', 'Run a rake task in several Rails environments' long_desc <<-LONGDESC Example: `geordi rake db:migrate` `TASK` is run in the following Rails environments (if present): - development - test - cucumber LONGDESC def rake(*args) for env in %w(development test cucumber) # update long_desc when changing this if File.exists? "config/environments/#{env}.rb" call = %w[bundle exec rake] + args + ["RAILS_ENV=#{env}"] note_cmd call.join(' ') Util.system! *call end end end
Version data entries
51 entries across 51 versions & 1 rubygems