Skip to content

Commit

Permalink
environments/development updated for rails 3.2.6 and omniauth 1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
yorch committed Jun 23, 2012
1 parent 99f7a33 commit 4dede67
Showing 1 changed file with 23 additions and 12 deletions.
35 changes: 23 additions & 12 deletions config/environments/development.rb
Expand Up @@ -2,16 +2,15 @@
# Settings specified here will take precedence over those in config/application.rb # Settings specified here will take precedence over those in config/application.rb


# In the development environment your application's code is reloaded on # In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development # every request. This slows down response time but is perfect for development
# since you don't have to restart the webserver when you make code changes. # since you don't have to restart the web server when you make code changes.
config.cache_classes = false config.cache_classes = false


# Log error messages when you accidentally call methods on nil. # Log error messages when you accidentally call methods on nil.
config.whiny_nils = true config.whiny_nils = true


# Show full error reports and disable caching # Show full error reports and disable caching
config.consider_all_requests_local = true config.consider_all_requests_local = true
config.action_view.debug_rjs = true
config.action_controller.perform_caching = false config.action_controller.perform_caching = false


# Don't care if the mailer can't send # Don't care if the mailer can't send
Expand All @@ -23,6 +22,19 @@
# Only use best-standards-support built into browsers # Only use best-standards-support built into browsers
config.action_dispatch.best_standards_support = :builtin config.action_dispatch.best_standards_support = :builtin


# Raise exception on mass assignment protection for Active Record models
config.active_record.mass_assignment_sanitizer = :strict

# Log the query plan for queries taking more than this (works
# with SQLite, MySQL, and PostgreSQL)
config.active_record.auto_explain_threshold_in_seconds = 0.5

# Do not compress assets
config.assets.compress = false

# Expands the lines which load the assets
config.assets.debug = true

Rails.application.config.middleware.use OmniAuth::Builder do Rails.application.config.middleware.use OmniAuth::Builder do
# ALWAYS RESTART YOUR SERVER IF YOU MAKE CHANGES TO THESE SETTINGS! # ALWAYS RESTART YOUR SERVER IF YOU MAKE CHANGES TO THESE SETTINGS!


Expand All @@ -39,21 +51,20 @@
provider :github, 'CLIENT ID', 'SECRET' provider :github, 'CLIENT ID', 'SECRET'


# generic openid # generic openid
provider :openid, OpenID::Store::Filesystem.new('./tmp'), :name => 'openid' provider :openid, :store => OpenID::Store::Filesystem.new('/tmp'), :name => 'openid'


# dedicated openid # dedicated openid
provider :openid, OpenID::Store::Filesystem.new('./tmp'), :name => 'google', :identifier => 'https://www.google.com/accounts/o8/id' provider :openid, :store => OpenID::Store::Filesystem.new('/tmp'), :name => 'google', :identifier => 'https://www.google.com/accounts/o8/id'
# provider :google_apps, OpenID::Store::Filesystem.new('./tmp'), :name => 'google_apps' # provider :google_apps, :store => OpenID::Store::Filesystem.new('./tmp'), :name => 'google_apps'
# /auth/google_apps; you can bypass the prompt for the domain with /auth/google_apps?domain=somedomain.com # /auth/google_apps; you can bypass the prompt for the domain with /auth/google_apps?domain=somedomain.com


provider :openid, OpenID::Store::Filesystem.new('./tmp'), :name => 'yahoo', :identifier => 'yahoo.com' provider :openid, :store => OpenID::Store::Filesystem.new('/tmp'), :name => 'yahoo', :identifier => 'yahoo.com'
provider :openid, OpenID::Store::Filesystem.new('./tmp'), :name => 'aol', :identifier => 'openid.aol.com' provider :openid, :store => OpenID::Store::Filesystem.new('/tmp'), :name => 'aol', :identifier => 'openid.aol.com'
provider :openid, OpenID::Store::Filesystem.new('./tmp'), :name => 'myopenid', :identifier => 'myopenid.com' provider :openid, :store => OpenID::Store::Filesystem.new('/tmp'), :name => 'myopenid', :identifier => 'myopenid.com'


# Sign-up urls for Facebook, Twitter, and Github # Sign-up urls for Facebook, Twitter, and Github
# https://developers.facebook.com/setup # https://developers.facebook.com/setup
# https://github.com/account/applications/new # https://github.com/account/applications/new
# https://developer.twitter.com/apps/new # https://developer.twitter.com/apps/new
end end
end end

0 comments on commit 4dede67

Please sign in to comment.