Tagged Questions
2
votes
1answer
40 views
Compile assets before publish a gem
I'm working on small project https://github.com/lucassus/mongo_browser
It's an application written in sinatra.rb framework along with simple assets pipeline for compiling coffeescript and sass. Since ...
1
vote
2answers
935 views
Why isn't my stylesheet being included in my Rails 3 app?
I had created a scaffold users with all of the attendant views, controllers, stylesheets, etc.
I then renamed the contoller, model, DB table, and files to supporters.
Everything is working fine, and ...
0
votes
1answer
773 views
Coffee script definitions get ignored when using :remote => true and js.erb-responses
Okay, consider the following:
A app/views/pages/index.html.erb, consisting of:
<div id='content'>
<%= link_to 'Test', get_page_path('test'), :remote => true %>
</div>
A ...
1
vote
1answer
597 views
rails 3.1 coffeescript file extension problem
I have this stock rails 3.1 app, before even adding anything, I was testing to see if the assets are working as advertised
so i created this app/assets/javascripts/test.coffee
where test.coffee is ...
1
vote
1answer
715 views
How do I require subdirectories of /app/assets/javascripts in Rails 3.1
I want to separate out my javascripts into separate subdirectories in my Rails 3.1 app.
For instance I have a /modules directory inside /app/assets/javascripts
A way to either require all the ...
4
votes
2answers
722 views
How do I manage assets in Rails 3.1?
OK, so I'm starting a new project using Rails 3.1 and I'm new to CoffeeScript.
Anyway, I like the idea of having asset files representing controllers but what if I only want the JS to render when the ...