livejournal 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +2 -0
- data/Rakefile +1 -4
- data/VERSION +1 -1
- data/lib/livejournal/request.rb +1 -1
- metadata +6 -21
data/README.md
CHANGED
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.5
|
data/lib/livejournal/request.rb
CHANGED
@@ -88,7 +88,7 @@ module LiveJournal
|
|
88
88
|
}.join("&")
|
89
89
|
p request if @verbose
|
90
90
|
return if @dryrun
|
91
|
-
response, data = h.post('/interface/flat', request)
|
91
|
+
response, data = h.post('/interface/flat', request, {"User-Agent" => "ljrb/0.3.x"})
|
92
92
|
parseresponse(data)
|
93
93
|
dumpresponse if @verbose
|
94
94
|
if @result['success'] != "OK"
|
metadata
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: livejournal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 0
|
7
|
-
- 3
|
8
|
-
- 4
|
9
|
-
version: 0.3.4
|
4
|
+
prerelease:
|
5
|
+
version: 0.3.5
|
10
6
|
platform: ruby
|
11
7
|
authors:
|
12
8
|
- Evan Martin
|
@@ -15,8 +11,7 @@ autorequire:
|
|
15
11
|
bindir: bin
|
16
12
|
cert_chain: []
|
17
13
|
|
18
|
-
date:
|
19
|
-
default_executable:
|
14
|
+
date: 2012-01-18 00:00:00 Z
|
20
15
|
dependencies: []
|
21
16
|
|
22
17
|
description: LiveJournal module. Post to livejournal, retrieve friends lists, edit entries, sync journal to an offline database.
|
@@ -56,7 +51,6 @@ files:
|
|
56
51
|
- test/login.rb
|
57
52
|
- test/roundtrip.rb
|
58
53
|
- test/time.rb
|
59
|
-
has_rdoc: true
|
60
54
|
homepage: http://neugierig.org/software/livejournal/ruby/
|
61
55
|
licenses: []
|
62
56
|
|
@@ -70,28 +64,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
64
|
requirements:
|
71
65
|
- - ">="
|
72
66
|
- !ruby/object:Gem::Version
|
73
|
-
segments:
|
74
|
-
- 0
|
75
67
|
version: "0"
|
76
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
69
|
none: false
|
78
70
|
requirements:
|
79
71
|
- - ">="
|
80
72
|
- !ruby/object:Gem::Version
|
81
|
-
segments:
|
82
|
-
- 0
|
83
73
|
version: "0"
|
84
74
|
requirements: []
|
85
75
|
|
86
76
|
rubyforge_project:
|
87
|
-
rubygems_version: 1.
|
77
|
+
rubygems_version: 1.8.11
|
88
78
|
signing_key:
|
89
79
|
specification_version: 3
|
90
80
|
summary: Module for interacting with livejournal
|
91
|
-
test_files:
|
92
|
-
|
93
|
-
- test/comments-xml.rb
|
94
|
-
- test/database.rb
|
95
|
-
- test/login.rb
|
96
|
-
- test/roundtrip.rb
|
97
|
-
- test/time.rb
|
81
|
+
test_files: []
|
82
|
+
|