[Rails-core] Re: ActionMailer decoding multi-part w/ charset

2012-01-04 Thread Andrew France
Hi Mark, I recently came across a similar encoding problem with email and used #force_encoding as you describe. The issue is with the Mail gemhttps://github.com/mikel/mailthat ActionMailer uses. The gem currently has many encoding issues

[Rails-core] Re: Deprecation warning for nested I18n namespace lookup no longer supported.

2012-01-04 Thread Nicolas Buduroi
I was thinking about this and should this warning appear only for keys which correspond to an actual attribute? On Jan 3, 2:09 pm, Nicolas Buduroi nbudu...@gmail.com wrote: Hi, I'm not sure I18n namespace lookup mean but there's some libraries (likehttps://github.com/nofxx/symbolize) that use

[Rails-core] Routing + ActionController::TestCase

2012-01-04 Thread Nick Sutterer
Hi, just wondering why it makes sense to verify routing in an AC::TestCase test. class XX ActionController::TestCase it returns an empty cart do post :create ... end end If I have no routing set up: Failure/Error: post :create, :format = json No route matches

Re: [Rails-core] Routing + ActionController::TestCase

2012-01-04 Thread Colin Law
On 4 January 2012 17:13, Nick Sutterer apoton...@gmail.com wrote: Hi, just wondering why it makes sense to verify routing in an AC::TestCase test. class XX ActionController::TestCase    it returns an empty cart do      post :create      ...    end  end If I have no routing set up:

Re: [Rails-core] Routing + ActionController::TestCase

2012-01-04 Thread Luiz Felipe Garcia Pereira
That's why there are route tests, right? On Wed, Jan 4, 2012 at 3:20 PM, Colin Law clan...@googlemail.com wrote: On 4 January 2012 17:13, Nick Sutterer apoton...@gmail.com wrote: Hi, just wondering why it makes sense to verify routing in an AC::TestCase test. class XX

[Rails-core] Re: Routing + ActionController::TestCase

2012-01-04 Thread Nick Sutterer
On 4 Jan., 18:20, Colin Law clan...@googlemail.com wrote: On 4 January 2012 17:13, Nick Sutterer apoton...@gmail.com wrote: Hi, just wondering why it makes sense to verify routing in an AC::TestCase test. class XX ActionController::TestCase    it returns an empty cart do      

[Rails-core] Re: ActionMailer decoding multi-part w/ charset

2012-01-04 Thread digger69
Hi Andrew, thanks for the note. I found a google group for mail and found a related thread: http://groups.google.com/group/mail-ruby/browse_thread/thread/fdf0e9ef275cf327 Looks like stepchud has a few patches for this: https://github.com/stepchud/mail/commits/actionmailer-2.3.8_compatible but

[Rails-core] [ANN] Rails 3.2.0.rc2 has been released

2012-01-04 Thread Santiago Pastorino
Hi everyone, Rails 3.2.0.rc2 has been released. **Update your Gemfile to depend on sass-rails ~ 3.2.3** ## IMPORTANT **Support for Rails 2.3-style plugins (vendor/plugins!) will be removed in Rails 4.0. Move them out and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/*