FUCK OFF JUMMIT

This commit is contained in:
Timothy N. Tsvetkov 2011-04-15 17:20:48 +04:00
parent a7df2a7a26
commit 515ca84842
5 changed files with 22 additions and 17 deletions

View File

@ -4,7 +4,9 @@
:javascript :javascript
!window.jQuery && document.write(unescape('%3Cscript src="/javascripts/jquery.min.js"%3E%3C/script%3E')) !window.jQuery && document.write(unescape('%3Cscript src="/javascripts/jquery.min.js"%3E%3C/script%3E'))
= include_javascripts :application -#= include_javascripts :application
= javascript_include_tag "jrails", "application", "drop_down_menu"
-# Append your own using content_for :javascripts -# Append your own using content_for :javascripts
= yield :javascripts = yield :javascripts

View File

@ -1,3 +1,5 @@
= include_stylesheets :application -#= include_stylesheets :application
= stylesheet_link_tag "web-app-theme/base.css", "web-app-theme/themes/default/style.css", "web-app-theme/override.css", "git/style.css"
= yield :stylesheets = yield :stylesheets

View File

@ -2,7 +2,9 @@
%html %html
%head %head
%title= t("layout.global_header") %title= t("layout.global_header")
= include_stylesheets :sessions -#= include_stylesheets :sessions
= stylesheet_link_tag "web-app-theme/base.css", "web-app-theme/themes/default/style.css", "web-app-theme/override.css"
= csrf_meta_tag = csrf_meta_tag
%body %body
#container #container

View File

@ -1,6 +1,5 @@
javascripts: javascripts:
application: application:
- public/javascripts/rails.js
- public/javascripts/application.js - public/javascripts/application.js
- public/javascripts/drop_down_menu.js - public/javascripts/drop_down_menu.js

View File

@ -60,21 +60,21 @@ namespace :deploy do
run "cd #{deploy_to}/current ; pkill unicorn; sleep 0.5; pkill -9 unicorn; sleep 0.5 ; unicorn_rails -c config/unicorn.rb -E production -D " run "cd #{deploy_to}/current ; pkill unicorn; sleep 0.5; pkill -9 unicorn; sleep 0.5 ; unicorn_rails -c config/unicorn.rb -E production -D "
end end
desc 'Bundle and minify the JS and CSS files' # desc 'Bundle and minify the JS and CSS files'
task :build_assets, :roles => :app do # task :build_assets, :roles => :app do
root_path = File.expand_path(File.dirname(__FILE__) + '/..') # root_path = File.expand_path(File.dirname(__FILE__) + '/..')
assets_path = "#{root_path}/public/assets" # assets_path = "#{root_path}/public/assets"
envs = "RAILS_ENV=production" # envs = "RAILS_ENV=production"
#
# Precaching assets # # Precaching assets
run_locally "bash -c '#{envs} jammit'" # run_locally "bash -c '#{envs} jammit'"
#
# Uploading prechached assets # # Uploading prechached assets
top.upload assets_path, "#{current_release}/public", :via => :scp, :recursive => true # top.upload assets_path, "#{current_release}/public", :via => :scp, :recursive => true
end # end
after "deploy:update_code", :roles => :web do after "deploy:update_code", :roles => :web do
build_assets # build_assets
symlink_config_files symlink_config_files
end end