instapaper_full 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -6,6 +6,10 @@ Draft version.
6
6
 
7
7
  Note that you need to [request OAuth Application tokens manually](http://www.instapaper.com/main/request_oauth_consumer_token) and that most methods only work for Instapaper subscribers.
8
8
 
9
+ # Installation
10
+
11
+ gem install instapaper_full
12
+
9
13
  # Examples
10
14
 
11
15
  ip = InstapaperFull::API.new :consumer_key => "my key", :consumer_secret => "my secret"
data/lib/faraday/oauth.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # from https://github.com/jnunemaker/twitter/blob/master/lib/faraday/oauth.rb
2
+
1
3
  require 'faraday'
2
4
  require 'simple_oauth'
3
5
 
@@ -1,3 +1,3 @@
1
1
  module InstapaperFull
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -62,10 +62,7 @@ module InstapaperFull
62
62
  r.body = body
63
63
  end
64
64
  end
65
- if result.status == 200
66
- return result.body
67
- end
68
- return nil
65
+ return result.body
69
66
  end
70
67
 
71
68
  def verify_credentials
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: instapaper_full
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matt Biddulph
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-15 00:00:00 +01:00
18
+ date: 2011-03-03 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency