backlog 0.3.8 → 0.3.9
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/History.txt +4 -0
- data/app/models/task.rb +1 -1
- metadata +1 -2
data/History.txt
CHANGED
data/app/models/task.rb
CHANGED
|
@@ -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.
|
|
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
|