Skip to content

Instantly share code, notes, and snippets.

@maiha
Created February 26, 2009 03:54
Show Gist options
  • Save maiha/70643 to your computer and use it in GitHub Desktop.
Save maiha/70643 to your computer and use it in GitHub Desktop.
irb> [1,2].to_s
=> "12" # 1.8
=> "[1, 2]" # 1.9
irb> "Content-Type: #{MIME::Types.type_for('html')}"
=> "Content-Type: text/html" # 1.8
=> "Content-Type: [#<MIME::Type:0x9061248 @content_type=\"text/html\", @raw_ ... # 1.9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment