Good notes posted by avakhov
RSS feed
5 thanks
Require file from the same folder
If you want to require file from the same folder, the simplest way is
require File.expand_path('../file-to-require', __FILE__)
If your file is /lib/book.rb
File.expand_path('../page', '/lib/book.rb') => '/lib/page.rb'

3 thanks
Reverse version of camelize
Reverse version of camelize is underscore