15 Nov, 2011
1 commit
03 Nov, 2011
1 commit
02 Nov, 2011
1 commit
-
Performance tweaks
19 Oct, 2011
5 commits
09 Oct, 2011
1 commit
28 Sep, 2011
1 commit
27 Sep, 2011
2 commits
26 Sep, 2011
4 commits
-
Conflicts: app/controllers/apps_controller.rb app/models/app.rb app/models/deploy.rb app/models/problem.rb app/views/notices/_backtrace.html.haml app/views/notices/_summary.html.haml public/stylesheets/application.css spec/models/problem_spec.rb
-
…les, fixed whitespace, upgraded RSpec to 2.6.0 Conflicts: app/helpers/errs_helper.rb app/mailers/mailer.rb app/models/notice.rb app/views/errs/_table.html.haml app/views/errs/show.html.haml app/views/notices/_summary.html.haml spec/models/issue_trackers/redmine_tracker_spec.rb spec/views/errs/show.html.haml_spec.rb
13 Sep, 2011
2 commits
-
…:Base.smtp_settings needed to be set, not Errbit::Application.config.action_mailer.smtp_settings.
-
…ailer class is loaded too early in spec run, and so the InlineCSSHelpers aren't included on ActionMailer::Base at that time.
11 Sep, 2011
3 commits
-
headers; - cache sortable attributes on Problem - index sortable attributes for performance
-
made notices so that their 'where' attribute matches spec expectations.
-
…tylesheets. Module is small enough to live in initializer.
09 Sep, 2011
1 commit
-
…back to issue trackers such as redmine. Redmine can now also be configured with 2 projects - one for creating tickets, and one for viewing files. (Some organizations do it this way because of permissions issues)
08 Sep, 2011
1 commit
06 Sep, 2011
1 commit
05 Sep, 2011
6 commits
-
concerns (e.g. fingerprint) from notice parsing concerns. This also makes it easier to support multiple versions of the Airbrake API.
03 Sep, 2011
1 commit
31 Aug, 2011
5 commits
27 Aug, 2011
2 commits
-
…. (We needed to set up 10+ apps using the same issue tracker and watcher email). Works great, and is tested, but I wouldn't mind some help on the UI.
-
…issue tracker models. This not only keeps the view DRY, but also streamlines the process of creating new issue trackers. Next step is to write a rails generator so that we can run 'rails generate issue_tracker NewIssueTracker'. Also, this commit contains a fix for the apps/edit page, where issue trackers were not being saved correctly.
24 Aug, 2011
1 commit
19 Aug, 2011
1 commit
-
…ntroller into their respective models. * Wrote specs for Fogbugz. Turns out that the Fogbugz API used the 'Crack' gem which happened to break mongoid by playing with the String class. See here for details: [ https://github.com/mongoid/mongoid/issues/618 ]. * This is why I had to upgrade mongoid to version 2.1.1, which included the 'Crack' fix. Upgrading Mongoid to 2.1.1 required the following changes: ** Fixing a counter_cache test on Err model ** Namespacing all of the subclassed IssueTracker models based on their parent directory ** Setting `config.mongoid.preload_models = true` in config/application.rb