dotime 0.0.4 → 0.0.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.
Files changed (4) hide show
  1. data/History.txt +3 -0
  2. data/lib/basecamp.rb +5 -1
  3. data/lib/do_time.rb +1 -1
  4. metadata +2 -2
@@ -1,3 +1,6 @@
1
+ == 0.0.5 / 2007-01-29
2
+ * Updated basecamp lib with patch to fix typecast bug.
3
+
1
4
  == 0.0.4 / 2007-01-09
2
5
  * Fixed bug that would strip content from todo titles within square brackets ([]). Now only strips the content if within double square brackets ([[]]).
3
6
 
@@ -426,7 +426,11 @@ class Basecamp
426
426
  end
427
427
  else
428
428
  value.empty? ? nil : value.inject({}) do |h,(k,v)|
429
- h[k] = typecast_value(v)
429
+ if k == 'type'
430
+ h = nil
431
+ else
432
+ h[k] = typecast_value(v)
433
+ end
430
434
  h
431
435
  end
432
436
  end
@@ -18,7 +18,7 @@ require File.dirname(__FILE__) + '/basecamp'
18
18
  require 'optparse'
19
19
 
20
20
  class DoTime
21
- VERSION = '0.0.4'
21
+ VERSION = '0.0.5'
22
22
 
23
23
  include HighLine::SystemExtensions
24
24
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: dotime
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.4
7
- date: 2007-01-09 00:00:00 +00:00
6
+ version: 0.0.5
7
+ date: 2007-01-29 00:00:00 +00:00
8
8
  summary: Cheap time tracking for Basecamp todo lists
9
9
  require_paths:
10
10
  - lib