quickbase_client 1.0.3 → 1.0.4
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.rdoc +2 -0
- data/lib/QuickBaseClient.rb +4 -0
- metadata +3 -3
data/README.rdoc
CHANGED
data/lib/QuickBaseClient.rb
CHANGED
@@ -1343,6 +1343,10 @@ class Client
|
|
1343
1343
|
t = Time.at( milliseconds_s[0,10].to_i, milliseconds_s[10,3].to_i )
|
1344
1344
|
t += (60 * 60 * 24) if addDay
|
1345
1345
|
fmt = t.strftime( fmtString )
|
1346
|
+
elsif milliseconds_s.length > 0
|
1347
|
+
t = Time.at( (milliseconds_s.to_i) / 1000 )
|
1348
|
+
t += (60 * 60 * 24) if addDay
|
1349
|
+
fmt = t.strftime( fmtString )
|
1346
1350
|
end
|
1347
1351
|
end
|
1348
1352
|
fmt
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 1.0.
|
8
|
+
- 4
|
9
|
+
version: 1.0.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Gareth Lewis
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-12-
|
17
|
+
date: 2010-12-24 00:00:00 -08:00
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|