Flowdock
method

acceptable_environment

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: EnvironmentArgument
acceptable_environment(env = nil) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/command/environment_argument.rb, line 27
        def acceptable_environment(env = nil)
          if available_environments.include? env
            env
          else
            %( production development test ).detect { |e| e =~ /^#{env}/ } || env
          end
        end
Register or log in to add new notes.