module Rounders::Rails

Constants

VERSION

Public Class Methods

ensure_rails_env() click to toggle source
# File lib/rounders/rails.rb, line 12
def ensure_rails_env
  raise 'please specify RAILS_ENV on the command line' if ::Rails.env.blank?
end
start!() click to toggle source
# File lib/rounders/rails.rb, line 16
def start!
  r = Rounders::Rounder.new
  r.start
end