module Pwwka

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/pwwka.rb, line 8
def configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/pwwka.rb, line 4
def configure
  yield(configuration)
end
environment() click to toggle source
# File lib/pwwka.rb, line 12
def environment
  ENV['RAILS_ENV'] || ENV['RACK_ENV'] || 'development'
end