quickbase_client 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.rdoc +2 -0
  2. data/lib/QuickBaseClient.rb +4 -0
  3. metadata +3 -3
data/README.rdoc CHANGED
@@ -29,6 +29,8 @@ More information about the QuickBase Client is available here -
29
29
 
30
30
  == Change History
31
31
 
32
+ 1.0.4 - 12/24/2010 - Fixed formatDate() error.
33
+
32
34
  1.0.3 - 12/07/2010 - Various small method improvements.
33
35
 
34
36
  1.0.2 - 12/05/2010 - Added removeFileAttachment().
@@ -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
- - 3
9
- version: 1.0.3
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-07 00:00:00 -08:00
17
+ date: 2010-12-24 00:00:00 -08:00
18
18
  default_executable:
19
19
  dependencies: []
20
20