livejournal 0.3.5 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- data/Changes +6 -0
- data/VERSION +1 -1
- data/lib/livejournal/request.rb +2 -1
- metadata +2 -2
data/Changes
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.6
|
data/lib/livejournal/request.rb
CHANGED
@@ -88,7 +88,8 @@ module LiveJournal
|
|
88
88
|
}.join("&")
|
89
89
|
p request if @verbose
|
90
90
|
return if @dryrun
|
91
|
-
response
|
91
|
+
response = h.post('/interface/flat', request, {"User-Agent" => "ljrb/0.3.x"})
|
92
|
+
data = response.read_body
|
92
93
|
parseresponse(data)
|
93
94
|
dumpresponse if @verbose
|
94
95
|
if @result['success'] != "OK"
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: livejournal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.3.
|
5
|
+
version: 0.3.6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Evan Martin
|
@@ -11,7 +11,7 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date: 2012-01-
|
14
|
+
date: 2012-01-20 00:00:00 Z
|
15
15
|
dependencies: []
|
16
16
|
|
17
17
|
description: LiveJournal module. Post to livejournal, retrieve friends lists, edit entries, sync journal to an offline database.
|