Skip to content

Instantly share code, notes, and snippets.

@luceos
Forked from carlcrott/gist:2218175
Created May 2, 2013 14:17
Show Gist options
  • Save luceos/5502503 to your computer and use it in GitHub Desktop.
Save luceos/5502503 to your computer and use it in GitHub Desktop.
class String
def valid_json?
begin
JSON.parse(self)
return true
rescue Exception => e
return false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment