Ruby Title Case
'some string here'.gsub(/\b\w/){$&.upcase}
11319 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
'some string here'.gsub(/\b\w/){$&.upcase}
#file: test-feed.cgi require 'test_feed' puts "Content-Type: text/xml" puts puts "<test_report>" tf = Test_feed.new() puts tf.plan puts "<actual>" tf.print('create_file', tf.tested) puts "</actual>" puts "</test_report>"