aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* All our emails are text, not HTMLHenare Degan2013-03-05-0/+0
|
* Workaround a Postgres connection error we are getting under Rails 3.1Henare Degan2013-03-05-2/+10
|
* Fixtures is namespaced in ActiveRecord nowHenare Degan2013-03-05-2/+2
|
* Update syntax while I'm hereHenare Degan2013-03-05-1/+1
|
* Remove debugging output that was causing migration to failHenare Degan2013-03-05-2/+0
|
* We don't need an old version of Rubygems so hopefully we don't need to do thisHenare Degan2013-03-05-22/+1
|
* We don't need an old version of Rubygems now we're on Rails 3Henare Degan2013-03-05-6/+0
| | | | | | Revert "automatically use the correct version of rubygems (1.6.2) in rvmrc" This reverts commit dc2bab9bddc08316fe6d92674aeb02777fc2b3be.
* Make Ruby 1.9.3 the defaultHenare Degan2013-03-04-2/+2
|
* Reload cached object after extracting attachmentsHenare Degan2013-03-04-0/+1
|
* Explicitly load association. Doesn't feel right but probably should refactor ↵Henare Degan2013-03-04-0/+3
| | | | all this anyway
* Rails 3.1 doesn't load the association from the id when creating a new ↵Henare Degan2013-03-04-4/+4
| | | | InfoRequest object
* Surely we expect the modified body hereHenare Degan2013-03-04-1/+1
|
* Reload the object after reparsing (Rails 3.1 caching)Henare Degan2013-03-04-0/+1
|
* Use built in fixture_file_uploadHenare Degan2013-03-04-5/+2
|
* This is cast to a string in Rails 3.1Henare Degan2013-03-04-1/+1
|
* rhtml is deprecated so rename fixture templatesHenare Degan2013-03-04-0/+0
|
* Remove schema information as this won't be updated any moreHenare Degan2013-03-04-30/+0
|
* Convert validators to newer, more Railsy ActiveModelHenare Degan2013-03-04-182/+29
|
* Specify the format so Rails doesn't just search for atom formatHenare Degan2013-03-04-1/+1
|
* Params are passed through as strings in Rails 3.1Henare Degan2013-03-03-1/+1
|
* In will_paginate 3 you can call paginate directly on the modelHenare Degan2013-03-03-3/+3
|
* We can't mock this in Rails 3.1 so switch to using fixture_file_upload insteadHenare Degan2013-03-03-3/+2
|
* We use info_request_id in the view so we should use it in the testHenare Degan2013-03-03-1/+1
|
* We need to reload here in Rails 3.1 (caching?)Henare Degan2013-03-03-0/+3
|
* Remove empty fixturesHenare Degan2013-03-03-4/+1
|
* This is already defined in xapian_indexHenare Degan2013-03-03-15/+0
|
* Update view test for Rails 3.1Henare Degan2013-03-03-6/+7
|
* See how we go not disabling this nowHenare Degan2013-03-03-23/+0
|
* Rename Configuration class to avoid conflict with ActiveSupport::ConfigurableHenare Degan2013-03-03-133/+133
|
* Different class in newer version of will_paginateHenare Degan2013-03-03-1/+1
|
* No longer available in Rails 3.1Henare Degan2013-03-03-1/+0
|
* Revert "Update this to match the older version of the mail gem we're using"Henare Degan2013-03-03-1/+2
| | | | This reverts commit b9a2d996408c1ef703aa78311f8c2a0f6e0d7afc.
* Upgrade to Rails 3.1Henare Degan2013-03-03-56/+66
| | | | And upgrade will_paginate to allow us to
* Use newer version of acts_as_versioned so we can upgrade RailsHenare Degan2013-03-03-4/+10
|
* response.redirected_to is deprecatedHenare Degan2013-03-03-1/+1
|
* Update form_for syntax in describe request formsHenare Degan2013-03-03-2/+2
|
* Update deprecated form_for syntax in a few request viewsHenare Degan2013-03-03-4/+4
|
* Update deprecated form_for syntax in comment formsHenare Degan2013-03-03-2/+2
|
* Backport Mail 2.5's to_yaml to prevent an exception with Ruby 1.8Henare Degan2013-03-02-0/+22
|
* Backport newer Mail code to fix decoding problems. #850Henare Degan2013-03-02-0/+38
|
* In Ruby 1.9.3 we need to explicitly require iconv because it's not ↵Henare Degan2013-02-28-1/+1
| | | | implicitly loaded via Mail
* Remove Tmail and use the Mail gem under Ruby 1.8.7 as wellHenare Degan2013-02-27-618/+35
|
* Fix calculation of attachment sizes in Ruby 1.9.3Henare Degan2013-02-27-17/+0
| | | | | | | | force_encoding is generally not a good idea and I can't see what it's trying to achieve here so... Revert "Use the character set of the attachment to encode the string that we're pulling out of the file before converting it to our default encoding." This reverts commit 3729f2053d4c04396d440a9c368bed174e9c9605.
* Rename ALL THE TEMPLATES!!1!!!one!!1!!Henare Degan2013-02-27-20/+20
| | | | .rhtml is deprecated in favour of .erb in Rails 3
* Fix some missing variablesHenare Degan2013-02-26-2/+2
|
* Upgrade UserMailer to new ActionMailer APIHenare Degan2013-02-26-28/+24
|
* Upgrade TrackMailer to new ActionMailer APIHenare Degan2013-02-26-7/+8
|
* We don't need this now we're not using Rails 2.xHenare Degan2013-02-26-51/+0
|
* file_name is passed as a string not an arrayHenare Degan2013-02-26-25/+24
|
* Upgrade more of RequestMailer to new ActionMailer APIHenare Degan2013-02-26-23/+19
| | | | Also change name of body instance method so it doesn't collide