Skip to content

Commit

Permalink
Merge pull request eschulte#20 from imonyse/assets_pipeline_support
Browse files Browse the repository at this point in the history
Add stylesheets and javascripts jump path for Rails 3.1 asset pipeline
  • Loading branch information
purcell committed Oct 26, 2011
2 parents aa94eaf + 64db873 commit e5a7641
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rinari.el
Expand Up @@ -673,10 +673,12 @@ renders and redirects to find the final controller or view."
(log "o" ((t . "log/")) nil)
(worker "w" ((t . "lib/workers/")) nil)
(public "p" ((t . "public/")) nil)
(stylesheet "y" ((t . "public/stylesheets/.*")) nil)
(stylesheet "y" ((t . "public/stylesheets/.*")
(t . "app/assets/stylesheets/.*")) nil)
(sass "Y" ((t . "public/stylesheets/sass/.*")
(t . "app/stylesheets/.*")) nil)
(javascript "j" ((t . "public/javascripts/.*")) nil)
(javascript "j" ((t . "public/javascripts/.*")
(t . "app/assets/javascripts/.*")) nil)
(plugin "u" ((t . "vendor/plugins/")) nil)
(mailer "M" ((t . "app/mailers/")) nil)
(file-in-project "f" ((t . ".*")) nil)
Expand Down

0 comments on commit e5a7641

Please sign in to comment.