Created
July 2, 2010 20:18
-
-
Save zuigon/461857 to your computer and use it in GitHub Desktop.
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
files = (Dir["{app,config,db/migrate,lib,test}/**/*.rb"] + Dir['app/views/**/*.{rhtml,rxml,erb,builder,haml}']).sort | |
files -= ['config/boot.rb'] | |
for a, b in list | |
unless b['found'].empty? | |
# ... | |
end | |
end | |
def word_wrap(line_width = 78) | |
self.split("\n").collect do |line| | |
line.length > line_width ? line.gsub(/(.{1,#{line_width}})(\s+|$)/, "\\1\n").strip : line | |
end * "\n" | |
end | |
[1, 2, 3] * 3 == [1, 2, 3, 1, 2, 3, 1, 2, 3] | |
does = is = { true => 'Yes', false => 'No' } | |
does[10 == 50] # => "No" | |
is[10 > 5] # => "Yes" | |
def is_odd(x) | |
x % 2 != 0 | |
end | |
def contains_digits | |
self[/\d/] ? true : false | |
end | |
h = { :age => 10 } | |
h[:name].downcase # ERROR | |
h[:name].downcase rescue "No name" # => "No name" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment