fb_graph 1.3.4 → 1.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/fb_graph.gemspec +1 -1
- data/lib/fb_graph/event.rb +2 -2
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.5
|
data/fb_graph.gemspec
CHANGED
data/lib/fb_graph/event.rb
CHANGED
@@ -23,9 +23,9 @@ module FbGraph
|
|
23
23
|
if (start_time = attributes[:start_time])
|
24
24
|
@start_time = case start_time
|
25
25
|
when String
|
26
|
-
Time.parse(start_time)
|
26
|
+
Time.parse(start_time)
|
27
27
|
when Fixnum
|
28
|
-
Time.at(start_time)
|
28
|
+
Time.at(start_time)
|
29
29
|
end
|
30
30
|
end
|
31
31
|
if (end_time = attributes[:end_time])
|
metadata
CHANGED