class Thermite::Rails::Project::OutdatedBuildError
Public Class Methods
new(name)
click to toggle source
@param name [String] The crate name.
Calls superclass method
# File lib/thermite/rails/project.rb, line 13 def initialize(name) msg = "\n\nThermite crate '#{name}' is outdated. To resolve this issue, " \ "run `rake thermite:build:#{name}` and restart your server.\n\n" super(msg) end