Created
September 14, 2012 19:02
-
-
Save chyld/3723990 to your computer and use it in GitHub Desktop.
asset pipeline
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# checking the path | |
rails c | |
pp Rails.application.config.assets.paths | |
# in config/application.rb | |
config.assets.paths << "#{Rails.root}/vendor/assets/bootstrap" | |
<%= f.button({:class => "btn btn-primary"}) %> | |
<%= render :partial => 'shared/showsong', :locals => {:song => @song} %> | |
<%= render :partial => 'shared/showsong', :collection => @album.songs, :as => :song %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment