Created
February 23, 2011 01:16
-
-
Save cyberfox/839803 to your computer and use it in GitHub Desktop.
Gemfile from my project that is having NewRelic RPM/DelayedJob issues
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'http://rubygems.org' | |
gem 'rails', '3.0.3' | |
# Edit this Gemfile to bundle your application's dependencies. | |
# This preamble is the current preamble for Rails 3 apps; edit as needed. | |
gem 'mysql' | |
gem 'delayed_job' | |
gem 'unicorn' | |
gem "authlogic", :git => 'https://github.com/cyberfox/authlogic.git' | |
gem 'will_paginate' | |
gem 'right_aws' | |
gem 'fakeweb' | |
gem 'newrelic_rpm', :require => false | |
gem 'hoptoad_notifier' | |
gem 'nokogiri', '1.4.3.1' | |
group :test do | |
gem 'shoulda' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is config/intializers/newrelic.rb | |
require 'newrelic_rpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment