diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-05-14 09:34:33 -0300 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-05-15 09:38:32 +0200 |
commit | 7ffe76046ad142377bf6b286f4477b09513d1e37 (patch) | |
tree | 434ccfa88cd3b6df896004d2d89749b29f988cfa /activeresource/test/fixtures | |
parent | d18a2742e01d195eb2d228207062aff49f7eb854 (diff) | |
download | rails-7ffe76046ad142377bf6b286f4477b09513d1e37.tar.gz rails-7ffe76046ad142377bf6b286f4477b09513d1e37.tar.bz2 rails-7ffe76046ad142377bf6b286f4477b09513d1e37.zip |
ActiveResource shouldn't consider modules in the path
[#4529 state:committed]
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activeresource/test/fixtures')
-rw-r--r-- | activeresource/test/fixtures/sound.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activeresource/test/fixtures/sound.rb b/activeresource/test/fixtures/sound.rb new file mode 100644 index 0000000000..5c0ef5d55c --- /dev/null +++ b/activeresource/test/fixtures/sound.rb @@ -0,0 +1,5 @@ +module Asset + class Sound < ActiveResource::Base + self.site = "http://37s.sunrise.i:3000" + end +end |