backlog 0.3.8 → 0.3.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/History.txt +4 -0
  2. data/app/models/task.rb +1 -1
  3. metadata +1 -2
@@ -1,3 +1,7 @@
1
+ == 0.3.9 2007-08-03
2
+
3
+ * Fixed bug in moving task between periods
4
+
1
5
  == 0.3.8 2007-08-03
2
6
 
3
7
  * Fixed bug in setup script
@@ -23,7 +23,7 @@ class Task < ActiveRecord::Base
23
23
  validates_size_of :description, :maximum => 80, :if => :description
24
24
  validates_size_of :customer, :maximum => 64, :if => :customer
25
25
 
26
- validates_uniqueness_of :description, :scope => :backlog_id, :if => Proc.new {|task| task.backlog_id && task.previous_task_id.nil?}
26
+ #validates_uniqueness_of :description, :scope => :backlog_id, :if => Proc.new {|task| task.backlog_id && task.previous_task_id.nil?}
27
27
  validates_uniqueness_of :description, :scope => :period_id, :if => :period_id
28
28
  validates_uniqueness_of :position, :scope => :period_id, :if => :period_id, :allow_nil => true
29
29
  validates_uniqueness_of :position, :scope => :parent_id, :if => :parent_id, :allow_nil => true
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: backlog
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.3.8
6
+ version: 0.3.9
7
7
  date: 2007-08-03 00:00:00 +02:00
8
8
  summary: Application to aid collecting, processing, organizing, reviewing and doing tasks.
9
9
  require_paths:
@@ -223,7 +223,6 @@ files:
223
223
  - config/environments/datek_production.rb
224
224
  - LICENSE_LOCALIZATION
225
225
  - README.txt
226
- - doc
227
226
  - Manifest.txt
228
227
  - vendor
229
228
  - vendor/plugins