libis-workflow-mongoid 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -1
- data/lib/libis/workflow/mongoid/base.rb +42 -3
- data/lib/libis/workflow/mongoid/job.rb +25 -3
- data/lib/libis/workflow/mongoid/run.rb +9 -4
- data/lib/libis/workflow/mongoid/version.rb +1 -1
- data/lib/libis/workflow/mongoid/work_item_base.rb +16 -4
- data/lib/libis/workflow/mongoid/workflow.rb +25 -3
- data/lib/map_with_indifferent_access.rb +20 -0
- data/lib/map_with_indifferent_access/list.rb +867 -0
- data/lib/map_with_indifferent_access/map.rb +833 -0
- data/lib/map_with_indifferent_access/normalization.rb +92 -0
- data/lib/map_with_indifferent_access/normalization/deep_normalizer.rb +104 -0
- data/lib/map_with_indifferent_access/values.rb +39 -0
- data/lib/map_with_indifferent_access/version.rb +3 -0
- data/lib/map_with_indifferent_access/wraps_collection.rb +152 -0
- data/libis-workflow-mongoid.gemspec +0 -1
- data/spec/items/test_dir_item.rb +1 -1
- data/spec/items/test_file_item.rb +3 -3
- data/spec/tasks/camelize_name.rb +1 -1
- data/spec/workflow_spec.rb +2 -2
- metadata +10 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libis-workflow-mongoid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kris Dekeyser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: libis-workflow
|
@@ -123,6 +123,14 @@ files:
|
|
123
123
|
- lib/libis/workflow/mongoid/work_item_base.rb
|
124
124
|
- lib/libis/workflow/mongoid/worker.rb
|
125
125
|
- lib/libis/workflow/mongoid/workflow.rb
|
126
|
+
- lib/map_with_indifferent_access.rb
|
127
|
+
- lib/map_with_indifferent_access/list.rb
|
128
|
+
- lib/map_with_indifferent_access/map.rb
|
129
|
+
- lib/map_with_indifferent_access/normalization.rb
|
130
|
+
- lib/map_with_indifferent_access/normalization/deep_normalizer.rb
|
131
|
+
- lib/map_with_indifferent_access/values.rb
|
132
|
+
- lib/map_with_indifferent_access/version.rb
|
133
|
+
- lib/map_with_indifferent_access/wraps_collection.rb
|
126
134
|
- libis-workflow-mongoid.gemspec
|
127
135
|
- mongoid.yml
|
128
136
|
- spec/db_env.sh
|