Skip to content

Instantly share code, notes, and snippets.

@sorentwo
Created April 13, 2012 10:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sorentwo/2375692 to your computer and use it in GitHub Desktop.
Save sorentwo/2375692 to your computer and use it in GitHub Desktop.
Sample configuration
Dscout::Application.configure do
# Use absolute urls for assets
config.action_controller.asset_host = ENV['ASSET_HOST']
# In the development environment your application's code is reloaded on
# 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.
config.cache_classes = false
# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
# Show full error reports and disable caching
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Cache to memory when used
config.cache_store = :memory_store
# Don't care if the mailer can't send
config.action_mailer.perform_deliveries = false
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :sendmail
config.action_mailer.default_url_options = { host: 'localhost:3000' }
# Print deprecation notices to the Rails logger
config.active_support.deprecation = :log
# Only use best-standards-support built into browsers
config.action_dispatch.best_standards_support = :builtin
# Do not compress assets
config.assets.compress = false
# Expands the lines which load the assets
config.assets.debug = false
end
source :gemcutter
gem 'airbrake', '~> 3.0.9'
gem 'braintree', '~> 2.14.0'
gem 'carrierwave', '~> 0.6.0.beta', git: 'git://github.com/jnicklas/carrierwave.git', ref: '789a8b952764a21e3ff837a628d8c15558cc7ad1'
gem 'dalli', '~> 1.1.5'
gem 'devise', '~> 2.0.4'
gem 'draper', '~> 0.10.0'
gem 'ejs', '~> 1.0.0'
gem 'fog', '~> 1.1.2'
gem 'haml', '~> 3.1.0'
gem 'pg', '~> 0.13.2'
gem 'premailer-rails3', '~> 1.1.0', git: 'git://github.com/sorentwo/premailer-rails3.git'
gem 'puma', '~> 1.1.1'
gem 'rails', '~> 3.2.2'
gem 'redis', '~> 2.2.2'
gem 'redcarpet', '~> 2.1.0'
gem 'resque', '~> 1.20.0'
gem 'rmagick', '~> 2.13.1'
gem 'simple_form', '~> 1.5.2'
gem 'texticle', '~> 2.0.2', require: 'texticle/rails'
group :production do
gem 'newrelic_rpm'
end
group :assets do
gem 'backbone-rails', '0.5.3.1' # Lock this for now, prevent upgrading to 0.9
gem 'coffee-rails'
gem 'jquery-rails'
gem 'sass-rails'
gem 'uglifier'
end
group :development, :test do
gem 'heroku', require: false
gem 'foreman'
gem 'konacha'
end
group :test do
gem 'capybara', '~> 1.1.0', require: false
gem 'capybara-webkit', '~> 0.11.0', require: false
gem 'cucumber-rails', '~> 1.3.0', require: false
gem 'database_cleaner', '~> 0.7.0', require: false
gem 'email_spec', '~> 1.2.1', require: false
gem 'factory_girl_rails', '~> 1.6.0'
gem 'fakeweb', '~> 1.3.0', require: false
gem 'fuubar', '~> 1.0.0'
gem 'fuubar-cucumber', '~> 0.0.15'
gem 'pry', '~> 0.9.8'
gem 'rspec-rails', '~> 2.8.1'
gem 'shoulda-matchers', '~> 1.0.0', require: false
gem 'timecop', '~> 0.3.5', require: false
gem 'vcr', '~> 2.0.0', require: false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment