class Spring::MissingApplication
Attributes
project_root[R]
Public Class Methods
new(project_root)
click to toggle source
# File lib/spring/errors.rb, line 21 def initialize(project_root) @project_root = project_root end
Public Instance Methods
message()
click to toggle source
# File lib/spring/errors.rb, line 25 def message "Spring was unable to find your config/application.rb file. " \ "Your project root was detected at #{project_root}, so spring " \ "looked for #{project_root}/config/application.rb but it doesn't exist. You can " \ "configure the root of your application by setting Spring.application_root in " \ "config/spring.rb." end