mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Updated website to point to github issues instead of lighthouse.
This commit is contained in:
parent
8c59ef5079
commit
e922314ea2
1 changed files with 35 additions and 36 deletions
|
@ -1,32 +1,31 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>HTTParty by John Nunemaker</title>
|
||||
<link rel="stylesheet" href="css/common.css" type="text/css" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>HTTParty by John Nunemaker</title>
|
||||
<link rel="stylesheet" href="css/common.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="wrapper">
|
||||
<div id="header">
|
||||
<h1>HTTParty</h1>
|
||||
<p>Tonight we're gonna HTTParty like it's 1999!</p>
|
||||
<div id="header">
|
||||
<h1>HTTParty</h1>
|
||||
<p>Tonight we're gonna HTTParty like it's 1999!</p>
|
||||
|
||||
<ul id="nav">
|
||||
<li><a href="rdoc/">Docs</a></li>
|
||||
<li><a href="http://github.com/jnunemaker/httparty">Github</a></li>
|
||||
<li><a href="http://jnunemaker.lighthouseapp.com/projects/14842-httparty/tickets">Lighthouse</a></li>
|
||||
<li><a href="http://rubyforge.org/projects/httparty/">Rubyforge</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<ul id="nav">
|
||||
<li><a href="rdoc/">Docs</a></li>
|
||||
<li><a href="http://github.com/jnunemaker/httparty">Github</a></li>
|
||||
<li><a href="http://rubyforge.org/projects/httparty/">Rubyforge</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h2>Install</h2>
|
||||
<pre><code>$ sudo gem install httparty</code></pre>
|
||||
<div id="content">
|
||||
<h2>Install</h2>
|
||||
<pre><code>$ sudo gem install httparty</code></pre>
|
||||
|
||||
<h2>Some Quick Examples</h2>
|
||||
<h2>Some Quick Examples</h2>
|
||||
|
||||
<p>The following is a simple example of wrapping Twitter's API for posting updates.</p>
|
||||
<p>The following is a simple example of wrapping Twitter's API for posting updates.</p>
|
||||
|
||||
<pre><code>class Twitter
|
||||
include HTTParty
|
||||
|
@ -36,9 +35,9 @@ end
|
|||
|
||||
Twitter.post('/statuses/update.json', :query => {:status => "It's an HTTParty and everyone is invited!"})</code></pre>
|
||||
|
||||
<p>That is really it! The object returned is a ruby hash that is decoded from Twitter's json response. JSON parsing is used because of the .json extension in the path of the request. You can also explicitly set a format (see the examples). </p>
|
||||
<p>That is really it! The object returned is a ruby hash that is decoded from Twitter's json response. JSON parsing is used because of the .json extension in the path of the request. You can also explicitly set a format (see the examples). </p>
|
||||
|
||||
<p>That works and all but what if you don't want to embed your username and password in the class? Below is an example to fix that:</p>
|
||||
<p>That works and all but what if you don't want to embed your username and password in the class? Below is an example to fix that:</p>
|
||||
|
||||
<pre><code>class Twitter
|
||||
include HTTParty
|
||||
|
@ -56,18 +55,18 @@ end
|
|||
|
||||
Twitter.new('username', 'password').post("It's an HTTParty and everyone is invited!")</code></pre>
|
||||
|
||||
<p><strong>More Examples:</strong> There are <a href="http://github.com/jnunemaker/httparty/tree/master/examples/">several examples in the gem itself</a>.</p>
|
||||
<p><strong>More Examples:</strong> There are <a href="http://github.com/jnunemaker/httparty/tree/master/examples/">several examples in the gem itself</a>.</p>
|
||||
|
||||
<h2>Support</h2>
|
||||
<p>Conversations welcome in the <a href="http://groups.google.com/group/httparty-gem">google group</a> and bugs/features over at <a href="http://jnunemaker.lighthouseapp.com/projects/14842-httparty/overview">Lightouse</a>.</p>
|
||||
<h2>Support</h2>
|
||||
<p>Conversations welcome in the <a href="http://groups.google.com/group/httparty-gem">google group</a> and bugs/features over at <a href="http://github.com/jnunemaker/httparty">Github</a>.</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<p>Created by <a href="http://addictedtonew.com/about/">John Nunemaker</a> |
|
||||
<a href="http://orderedlist.com/">Hire Me at Ordered List</a></p>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>Created by <a href="http://addictedtonew.com/about/">John Nunemaker</a> |
|
||||
<a href="http://orderedlist.com/">Hire Me at Ordered List</a></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue