Skip to content

Instantly share code, notes, and snippets.

/environments.rb Secret

Created April 28, 2015 05:04
Show Gist options
  • Save anonymous/da1c0e9b6e59883c27de to your computer and use it in GitHub Desktop.
Save anonymous/da1c0e9b6e59883c27de to your computer and use it in GitHub Desktop.
require 'sinatra' unless defined?(Sinatra)
configure :development do
$stdout.sync = true
set :database, 'sqlite:///dev.db'
set :show_exceptions, true
ENV['RACK_ENV'] = "development"
$redis = Redis.new
end
config/environments.rb:3:in `<top (required)>': undefined method `configure' for main:Object (NoMethodError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment