Skip to content

Instantly share code, notes, and snippets.

@rdj
Created June 28, 2011 20:36
Show Gist options
  • Select an option

  • Save rdj/1052134 to your computer and use it in GitHub Desktop.

Select an option

Save rdj/1052134 to your computer and use it in GitHub Desktop.
bundle show
deploy@hardy:/u/apps/myapp/current$ rm -rf public/assets
deploy@hardy:/u/apps/myapp/current$ RAILS_ENV=production bundle exec rake assets:precompile
deploy@hardy:/u/apps/myapp/current$ find public/assets/ -size 0 | wc -l
0
deploy@hardy:/u/apps/myapp/current$ ls -l public/assets/bg-logo-9e2504e510490de4ebcbe297364f3826.01.gif
-rw-r--r-- 1 deploy deploy 1174 2011-06-28 13:51 public/assets/bg-logo-9e2504e510490de4ebcbe297364f3826.01.gif
deploy@hardy:/u/apps/myapp/current$ RAILS_ENV=production bundle exec rake assets:precompile
deploy@hardy:/u/apps/myapp/current$ find public/assets/ -size 0 | wc -l
49
deploy@hardy:/u/apps/myapp/current$ ls -l public/assets/bg-logo-9e2504e510490de4ebcbe297364f3826.01.gif
-rw-r--r-- 1 deploy deploy 0 2011-06-28 13:51 public/assets/bg-logo-9e2504e510490de4ebcbe297364f3826.01.gif
Gems included by the bundle:
* actionmailer (3.1.0.rc4)
* actionpack (3.1.0.rc4)
* activemerchant (1.15.0)
* activemodel (3.1.0.rc4)
* activerecord (3.1.0.rc4)
* activeresource (3.1.0.rc4)
* activesupport (3.1.0.rc4)
* addressable (2.2.6)
* arel (2.1.1)
* authlogic (3.0.2 0297e1c)
* bartt-ssl_requirement (1.2.7)
* bcrypt-ruby (2.1.4)
* braintree (2.10.1)
* builder (3.0.0)
* bundler (1.0.14)
* daemons (1.1.3)
* delayed_job (2.1.4)
* dynamic_form (1.1.4)
* erubis (2.7.0)
* execjs (1.1.3)
* haml (3.1.2)
* hike (1.1.0)
* i18n (0.6.0)
* jquery-rails (1.0.10)
* json (1.5.2)
* kaminari (0.12.4)
* libv8 (3.3.10.2)
* mail (2.3.0)
* mechanize (1.0.0)
* mime-types (1.16)
* multi_json (1.0.3)
* mysql2 (0.3.6)
* nokogiri (1.4.4)
* polyglot (0.3.1)
* rack (1.3.0)
* rack-cache (1.0.2)
* rack-mount (0.8.1)
* rack-ssl (1.3.2)
* rack-test (0.6.0)
* rails (3.1.0.rc4)
* railties (3.1.0.rc4)
* rake (0.9.2)
* rdoc (3.6.1)
* sass (3.1.2)
* sass-rails (3.1.0.rc.2)
* sitemap_generator (2.0.1)
* sprockets (2.0.0.beta.10)
* therubyracer (0.9.2)
* thor (0.14.6)
* tilt (1.3.2)
* treetop (1.4.9)
* tzinfo (0.3.28)
* uglifier (0.5.4)
config.assets.enabled = true
config.assets.precompile = [ /./ ] # Precompile everything
config.assets.compress = true
config.assets.js_compressor = :uglifier
ruby-1.9.2-p180@myapp:
system:
uname: "Linux ifhardy 2.6.24-28-server #1 SMP Fri Feb 11 17:44:09 UTC 2011 i686 GNU/Linux"
bash: "/bin/bash => GNU bash, version 3.2.39(1)-release (i486-pc-linux-gnu)"
zsh: " => not installed"
rvm:
version: "rvm 1.2.7 by Wayne E. Seguin ([email protected]) [http://rvm.beginrescueend.com/]"
ruby:
interpreter: "ruby"
version: "1.9.2p180"
date: "2011-02-18"
platform: "i686-linux"
patchlevel: "2011-02-18 revision 30909"
full_version: "ruby 1.9.2p180 (2011-02-18 revision 30909) [i686-linux]"
homes:
gem: "/home/deploy/.rvm/gems/ruby-1.9.2-p180@myapp"
ruby: "/home/deploy/.rvm/rubies/ruby-1.9.2-p180"
binaries:
ruby: "/home/deploy/.rvm/rubies/ruby-1.9.2-p180/bin/ruby"
irb: "/home/deploy/.rvm/rubies/ruby-1.9.2-p180/bin/irb"
gem: "/home/deploy/.rvm/rubies/ruby-1.9.2-p180/bin/gem"
rake: "/home/deploy/.rvm/gems/ruby-1.9.2-p180@myapp/bin/rake"
environment:
PATH: "/home/deploy/.rvm/gems/ruby-1.9.2-p180@myapp/bin:/home/deploy/.rvm/gems/ruby-1.9.2-p180@global/bin:/home/deploy/.rvm/rubies/ruby-1.9.2-p180/bin:/home/deploy/.rvm/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
GEM_HOME: "/home/deploy/.rvm/gems/ruby-1.9.2-p180@myapp"
GEM_PATH: "/home/deploy/.rvm/gems/ruby-1.9.2-p180@myapp:/home/deploy/.rvm/gems/ruby-1.9.2-p180@global"
MY_RUBY_HOME: "/home/deploy/.rvm/rubies/ruby-1.9.2-p180"
IRBRC: "/home/deploy/.rvm/rubies/ruby-1.9.2-p180/.irbrc"
RUBYOPT: ""
gemset: "myapp"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment