fbauth 1.0.0.1 → 1.0.0.2
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.mdown +9 -0
- data/lib/facebook_http.rb +2 -2
- metadata +3 -3
data/README.mdown
CHANGED
|
@@ -227,6 +227,15 @@ haven't (that we recall) come across the answers to these questions yet:
|
|
|
227
227
|
|
|
228
228
|
# Change Log #
|
|
229
229
|
|
|
230
|
+
v1.0.0.2
|
|
231
|
+
|
|
232
|
+
- Fixed bug where timing instrumentation reporting CPU time rather than
|
|
233
|
+
wall time
|
|
234
|
+
|
|
235
|
+
v1.0.0.1
|
|
236
|
+
|
|
237
|
+
- Added console application for quick testing, `script/console`
|
|
238
|
+
|
|
230
239
|
v1.0.0.0
|
|
231
240
|
|
|
232
241
|
- Changed call semantics for FacebookGraph and FacebookQuery,
|
data/lib/facebook_http.rb
CHANGED
|
@@ -34,7 +34,7 @@ module FacebookHttp
|
|
|
34
34
|
http.finish if http.started?
|
|
35
35
|
end
|
|
36
36
|
end
|
|
37
|
-
logger.warn("Facebook GET call to #{uri.to_s} completed in #{bench.
|
|
37
|
+
logger.warn("Facebook GET call to #{uri.to_s} completed in #{bench.real} seconds")
|
|
38
38
|
json
|
|
39
39
|
end
|
|
40
40
|
|
|
@@ -58,7 +58,7 @@ module FacebookHttp
|
|
|
58
58
|
http.finish if http.started?
|
|
59
59
|
end
|
|
60
60
|
end
|
|
61
|
-
logger.warn("Facebook POST call to #{uri.to_s} completed in #{bench.
|
|
61
|
+
logger.warn("Facebook POST call to #{uri.to_s} completed in #{bench.real} seconds")
|
|
62
62
|
json
|
|
63
63
|
end
|
|
64
64
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fbauth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 91
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
9
|
- 0
|
|
10
|
-
-
|
|
11
|
-
version: 1.0.0.
|
|
10
|
+
- 2
|
|
11
|
+
version: 1.0.0.2
|
|
12
12
|
platform: ruby
|
|
13
13
|
authors:
|
|
14
14
|
- Three Wise Men Inc.
|