Skip to content
This repository was archived by the owner on Jul 24, 2020. It is now read-only.

Speed-testing #574

Merged
merged 4 commits into from
Jul 8, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ group :development do
gem 'pry-remote'
gem 'letter_opener'
gem 'letter_opener_web', '~> 1.1.0'
gem 'rack-mini-profiler'
gem 'bullet'
end

group :production, :staging do
Expand Down
8 changes: 8 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ GEM
sass (~> 3.2)
thor
builder (3.0.4)
bullet (4.11.3)
activesupport (>= 3.0.0)
uniform_notifier (>= 1.6.0)
byebug (2.7.0)
columnize (~> 0.3)
debugger-linecache (~> 1.2)
Expand Down Expand Up @@ -244,6 +247,8 @@ GEM
rack (1.4.5)
rack-cache (1.2)
rack (>= 0.4)
rack-mini-profiler (0.9.2)
rack (>= 1.1.3)
rack-ssl (1.3.4)
rack
rack-test (0.6.2)
Expand Down Expand Up @@ -352,6 +357,7 @@ GEM
uglifier (2.2.1)
execjs (>= 0.3.0)
multi_json (~> 1.0, >= 1.0.2)
uniform_notifier (1.6.2)
warden (1.2.3)
rack (>= 1.0)
websocket (1.0.7)
Expand All @@ -370,6 +376,7 @@ DEPENDENCIES
airbrake
awesome_print
bootstrap-sass (~> 2.0.3)
bullet
cancan
capistrano
capybara (~> 2.0.0)
Expand Down Expand Up @@ -402,6 +409,7 @@ DEPENDENCIES
pry-rails
pry-remote
pry-stack_explorer
rack-mini-profiler
rails (= 3.2.14)
rails3-jquery-autocomplete
rake
Expand Down
11 changes: 11 additions & 0 deletions config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,15 @@

# Set Paperclip path
Paperclip.options[:command_path] = '/usr/local/bin'

config.after_initialize do
Bullet.enable = true
# Bullet.alert = true
Bullet.bullet_logger = true
Bullet.console = true
Bullet.rails_logger = true
# Bullet.bugsnag = true
# Bullet.add_footer = true
# Bullet.stacktrace_includes = [ 'your_gem', 'your_middleware' ]
end
end