This file contains 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
#Alternative to the use of aliasing | |
#This is one more alternative to what can be found here: http://blog.jayfields.com/2006/12/ruby-alias-method-alternative.html | |
module ClockRadioClassExtensions | |
module ClockRadioInstanceExtensions | |
def on! | |
super | |
@display_time = true | |
end | |
This file contains 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
Información del orador: | |
Los interesados en contribuir con conferencias o talleres deben enviar la siguiente información: | |
* Autores: Nombre completo y resumen curricular | |
Evan Henshaw-Plath | |
* Público Objetivo: (Gerentes, Desarrolladores, Administradores de Sistemas) | |
Gerentes & Desarrolladores | |
This file contains 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
Información del orador: | |
Los interesados en contribuir con conferencias o talleres deben enviar la siguiente información: | |
* Autores: Nombre completo y resumen curricular | |
Evan Henshaw-Plath | |
* Público Objetivo: (Gerentes, Desarrolladores, Administradores de Sistemas) | |
Desarrolladores | |
This file contains 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
Información del orador: | |
Los interesados en contribuir con conferencias o talleres deben enviar la siguiente información: | |
* Autores: Nombre completo y resumen curricular | |
Evan Henshaw-Plath | |
* Público Objetivo: (Gerentes, Desarrolladores, Administradores de Sistemas) | |
Desarrolladores | |
This file contains 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
Información del orador: | |
Los interesados en contribuir con conferencias o talleres deben enviar la siguiente información: | |
* Autores: Nombre completo y resumen curricular | |
Evan Henshaw-Plath | |
* Público Objetivo: (Gerentes, Desarrolladores, Administradores de Sistemas) | |
Desarrolladores & Gerentes | |
This file contains 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
#!/usr/local/bin/ruby | |
# encoding: UTF-8 | |
require 'rubygems' | |
gem 'mechanize' | |
gem 'main' | |
gem 'highline' | |
gem 'money' | |
gem 'change_watcher' |
This file contains 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
#!/usr/local/bin/ruby | |
require 'rubygems' | |
gem 'rest-client' | |
gem 'main' | |
gem 'highline' | |
require 'restclient' | |
require 'main' | |
require 'highline/import' |
This file contains 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
#!/usr/local/bin/ruby | |
missing_images = {} | |
grep_regexp = %q|/images[^\"\']*\....| | |
reference_and_image_paths = IO.popen('grep -ro "' + grep_regexp + '" app/views public/stylesheets').readlines | |
reference_and_image_paths.each do |reference_and_image_path| | |
reference, image_path = reference_and_image_path.split(":") | |
if image_path | |
image_path.gsub!(/^\//, 'public/').strip! | |
unless File.exists?(image_path) |
This file contains 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 | |
if [ -n "$1" ] | |
then | |
filter=$1 | |
else | |
echo "Usage: run_tests filtering_keyword" | |
exit | |
fi |
This file contains 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
#!/usr/local/bin/ruby | |
require 'rubygems' | |
gem 'mechanize' | |
gem 'main' | |
gem 'highline' | |
require 'mechanize' | |
require 'main' | |
require 'highline/import' |
OlderNewer