Sha256: cfacd24deea0269684f9b0e1a36a434117d4679ed410b0fe05dd8de5032dd8e7

Contents?: true

Size: 514 Bytes

Versions: 164

Compression:

Stored size: 514 Bytes

Contents

Examples:

Run `puts Rails.env` after loading the app:

  <%= executable %> 'puts Rails.env'

Run the Ruby file located at `path/to/filename.rb` after loading the app:

  <%= executable %> path/to/filename.rb

Run the Ruby script read from stdin after loading the app:
  <%= executable %> -

<% unless Gem.win_platform? %>
You can also use the runner command as a shebang line for your executables:

  #!/usr/bin/env <%= File.expand_path(executable) %>

  Product.all.each { |p| p.price *= 2 ; p.save! }
<% end %>

Version data entries

164 entries across 152 versions & 11 rubygems

Version Path
railties-5.2.0.rc2 lib/rails/commands/runner/USAGE
railties-5.2.0.rc1 lib/rails/commands/runner/USAGE
railties-5.2.0.beta2 lib/rails/commands/runner/USAGE
railties-5.2.0.beta1 lib/rails/commands/runner/USAGE