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
how to organize a code retreat from alex boloaca | |
http://bit.ly/9nzhql | |
... and another page | |
http://bit.ly/bRTX5D | |
introduction about code retreats from the inventor | |
http://coderetreat.com | |
the role of the facilitator |
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 "yaml" | |
require "hashie" | |
module ConfigLoader | |
class Config | |
def initialize(config_file) | |
self.config_file = config_file | |
end |
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
#/bin/bash | |
# | |
# NOT WORKING, yet!!! | |
# | |
# based uppen https://gist.github.com/1331533 | |
# | |
# bash < <(curl -s https://raw.github.com/gist/1652066/8e6c3e4b67d572f8f673e3d3950d94cfcd1e0954/install_debugger.sh) | |
# | |
DOWN_LOAD_DIR=/Users/markus/Downloads | |
wget -P $DOWN_LOAD_DIR http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem |
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
2012-02-22T18:14:43+00:00 app[web.1]: app/templates/test/unit/.empty_directory", "lib/rails/generators/rails/generator/templates/templates/.empty_directory", "lib/rails/generators/rails/plugin_new/templates/app/mailers/.empty_directory", "lib/rails/generators/rails/plugin_new/templates/app/models/.empty_directory"] | |
2012-02-22T18:14:43+00:00 app[web.1]: s.homepage = %q{http://www.rubyonrails.org} | |
2012-02-22T18:14:43+00:00 app[web.1]: s.rdoc_options = ["--exclude", "."] | |
2012-02-22T18:14:43+00:00 app[web.1]: s.require_paths = ["lib"] | |
2012-02-22T18:14:43+00:00 app[web.1]: s.required_ruby_version = Gem::Requirement.new(">= 1.8.7") | |
2012-02-22T18:14:43+00:00 app[web.1]: s.rubygems_version = %q{1.3.7} | |
2012-02-22T18:14:43+00:00 app[web.1]: s.summary = %q{Tools for creating, working with, and running Rails applications.} | |
2012-02-22T18:14:43+00:00 app[web.1]: | |
2012-02-22T18:14:43+00:00 app[web.1]: if s.respond_to? :specification_version then | |
2012-02-22T18:14:43+00:00 app[web.1]: current_version = Gem:: |
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
2012-03-11T21:19:08+00:00 app[web.1]: app/templates/test/unit/.empty_directory", "lib/rails/generators/rails/generator/templates/templates/.empty_directory", "lib/rails/generators/rails/plugin_new/templates/app/mailers/.empty_directory", "lib/rails/generators/rails/plugin_new/templates/app/models/.empty_directory"] | |
2012-03-11T21:19:08+00:00 app[web.1]: s.required_ruby_version = Gem::Requirement.new(">= 1.8.7") | |
2012-03-11T21:19:08+00:00 app[web.1]: s.rubygems_version = %q{1.3.7} | |
2012-03-11T21:19:08+00:00 app[web.1]: | |
2012-03-11T21:19:08+00:00 app[web.1]: s.summary = %q{Tools for creating, working with, and running Rails applications.} | |
2012-03-11T21:19:08+00:00 app[web.1]: if s.respond_to? :specification_version then | |
2012-03-11T21:19:08+00:00 app[web.1]: current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | |
2012-03-11T21:19:08+00:00 app[web.1]: s.specification_version = 3 | |
2012-03-11T21:19:08+00:00 app[web.1]: | |
2012-03-11T21:19:08+00:00 app[web.1]: if Gem::Version.new(Gem::VERSI |
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
#!/bin/bash | |
# install necessary packages on ubuntu | |
sudo apt-get install build-essential bison openssl libreadline6 libreadline6-dev curl zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev | |
# prevent webkit gem installation problem | |
# https://github.com/thoughtbot/capybara-webkit/wiki/Installing-Qt-and-compiling-capybara-webkit | |
sudo apt-get install libqt4-dev libqtwebkit-dev | |
# install rvm | |
# http://beginrescueend.com/ | |
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) |
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
Welcome to Ubuntu 11.10 (GNU/Linux 3.0.0-12-generic-pae i686) | |
* Documentation: https://help.ubuntu.com/ | |
System information as of Sun Mar 25 21:32:05 CEST 2012 | |
System load: 0.03 Processes: 58 | |
Usage of /: 13.3% of 28.04GB Users logged in: 1 | |
Memory usage: 5% IP address for eth0: 192.168.178.39 | |
Swap usage: 0% |
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
#!/bin/bash | |
# get ruby 1.9.3 for ubuntu rvm | |
curl -o /usr/share/ruby-rvm/archives/ruby-1.9.3-.tar.bz2 http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p0.tar.bz2 | |
rvm install 1.9.3 |
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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Cobalt.tmTheme", | |
"font_size": 11.0, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true | |
} |
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
-startup | |
../../../plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar | |
--launcher.library | |
../../../plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.200.v20120522-1813 | |
-product | |
org.eclipse.epp.package.jee.product | |
--launcher.defaultAction | |
openFile | |
-showsplash | |
org.eclipse.platform |