Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Hancock <stevenh512@gmail.com>2012-03-22 16:44:35 +0400
committerMaxwell Salzberg <maxwell@joindiaspora.com>2012-03-28 05:07:44 +0400
commit1aa0b15c8ccd51a7f5b53b5da91a02495bb9d6e6 (patch)
treedc9b0e443eefb09fd72804e97321f63489f63d62 /.gitignore
parent9dffb426d4d0ad342530b142dd19f66abd678218 (diff)
Move Javascript to the asset pipeline
* Move all Diaspora-specific javascripts to app/assets/javascripts * Move all vendored javascripts to vendor/assets/javascripts * Add the appropriate Sprockets require directives to make sure everything gets included in the right order * Remove Jammit dependencies * Fix all templates that were using Jammit's include_javascripts helper * Add handlebars_assets gem for compiling Handlebars templates * Move all Handlebars templates to app/assets/templates and rename from .handlebars to .jst.hbs (this is to keep them in the same global JST namespace that they were in under Jammit) * Add public/assets to .gitignore since these files can and should be re-generated by Heroku or Capistrano during each deploy * Fix a few Handlebars templates that were looking for images in the wrong location (I'm sure there are others, but it's late) * Configure application.rb to precompile all javascript and css assets that were compiled by Jammit in the Rails 3.0 code
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore4
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index f3b4d13bd..85e0cbb75 100644
--- a/.gitignore
+++ b/.gitignore
@@ -66,3 +66,7 @@ dump.rdb
#Rubinius's JIT
*.rbc
+
+# Ignore precompiled assets
+# Heroku or Capistrano can and should regenerate them on every deploy
+public/assets