module Roda::RodaPlugins::Environments::ClassMethods

def configure(*envs)

matches the current environment, yield the receiver to the block.
If no environments are given or one of the given environments
def configure(*envs)
  if envs.empty? || envs.any?{|s| s == environment}
    yield self
  end
end