Public Instance methods
configure(*envs)
If no environments are given or one of the given environments matches the current environment, yield the receiver to the block.
[show source]
# File lib/roda/plugins/environments.rb 53 def configure(*envs) 54 if envs.empty? || envs.any?{|s| s == environment} 55 yield self 56 end 57 end
environment()
The current environment for the application, which should be stored as a symbol.
[show source]
# File lib/roda/plugins/environments.rb 61 def environment 62 opts[:environment] 63 end
environment=(v)
Override the environment for the application, instead of using RACK_ENV.
[show source]
# File lib/roda/plugins/environments.rb 67 def environment=(v) 68 opts[:environment] = v 69 end