[Rails] Asset Pipeline negated css auto width margins

2011-11-25 Thread frizbe1605
If I use the asset pipeline my auto width margins don't work. The content box is shoved far left. If I disable asset pipeline it works as expected. Any ideas? Thanks, Steve -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to th

[Rails] Re: Does anyone know how to access a module namespace using a chained method?

2011-06-08 Thread frizbe1605
If I call Engine::BlogPost everything is gravy, If I call BlogPost then I get... uninitialized constant BlogPost On Jun 8, 11:35 am, Frederick Cheung wrote: > On Jun 7, 3:16 pm, frizbe1605 wrote: > > > Okay, I'm chaining methods. I want access to my class. I can access >

[Rails] Re: Does anyone know how to access a module namespace using a chained method?

2011-06-07 Thread frizbe1605
ethod like engine_some_class, it returns with EngineSomeClass rather than Engine::SomeClass. Any ideas on a chainable method for accessing this class now that it has the additional module namespace? Thanks, Steve On Jun 6, 1:35 pm, Frederick Cheung wrote: > On Jun 6, 3:34 pm, frizbe160

[Rails] Does anyone know how to access a module namespace using a chained method?

2011-06-06 Thread frizbe1605
EngineBlogPost == @blog.engine_blog_post Engine::BlogPost == Thanks! -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send e

[Rails] SomeClass is chainable by some_class, but how about Module::Class. How would I access that in the chain?

2011-06-03 Thread frizbe1605
I have something like BlogEngine::Blog.blog_engine_posts.new but it returns with BlogEnginePost instead of BlogEngine::Post. I'm new to using modules. Thanks, Steve -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group,

[Rails] After upgrade to 3 from 1 layout method doesn't render anything...

2010-10-20 Thread frizbe1605
I'm upgrading to Rails 3 from version 1. It has gone incredibly smooth. Thanks Rails Core! I am not working with a restful app, not even close. RESTfully, everything works as expected. Nothing renders when I call layout 'main', unless I render on a per action basis with render :layout => 'main'.