Method: Cheat#post_sheet
- Defined in:
- lib/cheat.rb
#post_sheet(title, body, new = false) ⇒ Object
172 173 174 175 176 |
# File 'lib/cheat.rb', line 172 def post_sheet(title, body, new = false) uri = "http://#{cheat_uri}/w/" uri += title unless new Net::HTTP.post_form(URI.parse(uri), "sheet_title" => title, "sheet_body" => body.strip, "from_gem" => true) end |