This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ bundle -v | |
| Bundler version 1.2.3 | |
| $ cat Gemfile | |
| source :rubygems | |
| gem 'chef', '~>0.9.14' | |
| :ruby => '1.9.3-p327' | |
| sunstreaker:i1113 mscottford$ bundle install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ bundle -v | |
| Bundler version 1.2.3 | |
| $ ls | |
| Gemfile-special | |
| $ cat Gemfile-special | |
| source :rubygems | |
| gem 'rake' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :ruby => '1.9.3-p327' | |
| sunstreaker:i1136 mscottford$ bundle -v | |
| Bundler version 1.2.3 | |
| :ruby => '1.9.3-p327' | |
| sunstreaker:i1136 mscottford$ cat Gemfile | |
| source :rubygems | |
| gem 'rake' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem list | cut -d" " -f1 | xargs gem uninstall -aIx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| env CFLAGS='-g -O2' CONFIGURE_OPTS="--with-readline-dir=`brew --prefix readline` --with-openssl-dir=`brew --prefix openssl`" rbenv install 1.9.3-p385 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <% preview_width, preview_height = proof_file.large.get_version_dimensions %> | |
| <% original_width, original_height = proof_file.original.get_version_dimensions %> | |
| <%= javascript_tag %Q[ | |
| function activate_#{proof_file.object_id}() { | |
| // set the 'master' and 'preview' images to be cropped | |
| $('#cropbox').attr('src', '#{proof_file.large.url}'); | |
| $('#preview').attr('src', '#{proof_file.large.url}'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Downloading openssl-1.0.1e.tar.gz... | |
| -> https://www.openssl.org/source/openssl-1.0.1e.tar.gz | |
| Installing openssl-1.0.1e... | |
| BUILD FAILED | |
| Inspect or clean up the working tree at /var/folders/8m/z64rk5ds0q75t53jr5r4zln40000gn/T/ruby-build.20130225095411.34549 | |
| Results logged to /var/folders/8m/z64rk5ds0q75t53jr5r4zln40000gn/T/ruby-build.20130225095411.34549.log | |
| Last 10 log lines: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var babyRoutine = require('baby-routine'); | |
| babyRoutine.createRoutine({ 'parents': [scott, andrea], 'baby': simon }, function(routine) { | |
| routine.wakeUp(function(baby, parents) { | |
| parents.changeDiaper(baby); | |
| parents.feed(baby); | |
| parents.playWithBaby(baby); | |
| }); | |
| routine.onTired(function(baby, parents) { | |
| if (parents.isBedTime(baby)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rsync -cavhE --progress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rake' | |
| task :spec => :seed_test_db | |
| task :seed_test_db do | |
| ENV["RAILS_ENV"] ||= 'test' | |
| Rake::Task['db:seed'].invoke | |
| end |