rails--rails/activeresource/test/fixtures
Matthijs Langenberg 67a838574b Fix broken module namespacing in ActiveResource with Ruby 1.9 [#5699 state:resolved]
Following namespace use case was broken with Ruby 1.9:

  class Author < ActiveRecord::Base
    ...
  end

  module Api
    class Book < ActiveResouce::Base
    end
  end

Let's say XML contains <book><author><name>John</name></author>....

  Api::Book.first.author.class.to_s #=>
    Ruby 1.8.7: "Api::Book::Author" (namespaced, correct),
    Ruby 1.9: "Author" (toplevel, broken)

Signed-off-by: José Valim <jose.valim@gmail.com>
2010-09-27 23:10:55 +02:00
..
address.rb Allow ActiveResource to work with non-generated ids [#5660 state:resolved] 2010-09-25 11:15:40 +02:00
beast.rb
customer.rb Fixes parsing deep nested resources from XML. [#380 state:resolved] 2008-06-09 23:06:07 -07:00
person.rb
project.rb Added validations to ActiveResource. Added a smoke test to see if we can add a validation and use it, and add a validates callback and use it. 2009-08-19 09:03:17 -05:00
proxy.rb HTTP proxy support 2009-08-08 15:33:55 -07:00
sound.rb Fix broken module namespacing in ActiveResource with Ruby 1.9 [#5699 state:resolved] 2010-09-27 23:10:55 +02:00
street_address.rb
subscription_plan.rb Allow ActiveResource to work with non-generated ids [#5660 state:resolved] 2010-09-25 11:15:40 +02:00