Created
September 12, 2011 14:51
-
-
Save mfkp/1211452 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
def techcrunch | |
puts "Even nerds can make great presentations!" | |
end | |
# Here's some other random code | |
def self.log= log | |
@@log = create_log log | |
end | |
def self.version | |
version_path = File.dirname(__FILE__) + "/../VERSION" | |
return File.read(version_path).chomp if File.file?(version_path) | |
"0.0.0" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment