* 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
72 lines
1.1 KiB
Text
72 lines
1.1 KiB
Text
#trademark sillyness
|
|
app/views/home/_show.html.haml
|
|
app/views/home/_show.mobile.haml
|
|
public/images/ball_small.png
|
|
public/images/ball.png
|
|
# Configuration files
|
|
config/app_config.yml
|
|
config/app.yml
|
|
config/application.yml
|
|
config/heroku.yml
|
|
config/script_server*.yml
|
|
config/fb_config.yml
|
|
config/oauth_keys.yml
|
|
config/initializers/secret_token.rb
|
|
config/redis.conf
|
|
config/deploy_config.yml
|
|
.bundle
|
|
vendor/bundle/*
|
|
vendor/cache/*
|
|
config/database.yml
|
|
.rvmrc_custom
|
|
.rvmrc.local
|
|
|
|
#Mailing list stuff
|
|
config/email_offset
|
|
config/mailing_list.csv
|
|
|
|
# Generated files
|
|
log/*
|
|
public/stylesheets/*.css
|
|
public/diaspora
|
|
spec/fixtures/*.y*ml
|
|
spec/fixtures/*.fixture.*
|
|
coverage/*
|
|
xml_locales/*
|
|
|
|
#Documentation
|
|
.yardoc/
|
|
doc/
|
|
|
|
# Uploaded files and local files
|
|
public/uploads/*
|
|
public/assets/*
|
|
public/source.tar*
|
|
public/.well-known
|
|
tmp/**/*
|
|
tmp/*
|
|
*.sqlite3
|
|
|
|
# Temporary files of every sort
|
|
.sass-cache/*
|
|
.DS_Store
|
|
.idea
|
|
.redcar
|
|
.rvmrc
|
|
.stgit*
|
|
*.swap
|
|
*.swo
|
|
*.swp
|
|
*~
|
|
bin/*
|
|
nbproject
|
|
patches-*
|
|
capybara-*.html
|
|
dump.rdb
|
|
|
|
#Rubinius's JIT
|
|
*.rbc
|
|
|
|
# Ignore precompiled assets
|
|
# Heroku or Capistrano can and should regenerate them on every deploy
|
|
public/assets
|