tasks_management 0.1.2 → 0.1.3
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.
- checksums.yaml +4 -4
- data/app/models/tasks_management/task.rb +1 -1
- data/lib/tasks_management/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4dc44dedfddf4747f77e004c777f9ef35f7e5f6b
|
4
|
+
data.tar.gz: 55322c56eb6848b72d9b0f65b4b69653688ffdc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 508d63df04c2e7948e11cdb929fe111363e0bf44c8b5f06c54805f39cbfc7c8a5f65639a3e2a7402f673026fcc7da5c35811ffc130d5b779607b217c0ca1e666
|
7
|
+
data.tar.gz: f77c45d2d5d3d9849c71ed1584401ea424c38f30b9fe73d27d6d9d1fc1014ed7262a7329882b4f2e63c70563039200aab89529e36a49a8792eaffb6faff5c814
|
@@ -5,7 +5,7 @@ module TasksManagement
|
|
5
5
|
has_many :sub_tasks, class_name: "Task", foreign_key: "parent_id"
|
6
6
|
belongs_to :parent, class_name: "Task"
|
7
7
|
|
8
|
-
enum priority: [:
|
8
|
+
enum priority: [:low, :medium, :high]
|
9
9
|
enum state: [:pending, :rejected, :started, :finished, :accepted]
|
10
10
|
|
11
11
|
after_save do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tasks_management
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrian Chang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -162,9 +162,6 @@ test_files:
|
|
162
162
|
- test/integration/navigation_test.rb
|
163
163
|
- test/fixtures/users.yml
|
164
164
|
- test/fixtures/tasks_management/tasks.yml
|
165
|
-
- test/dummy/config.ru
|
166
|
-
- test/dummy/Rakefile
|
167
|
-
- test/dummy/README.rdoc
|
168
165
|
- test/dummy/test/models/user_test.rb
|
169
166
|
- test/dummy/test/fixtures/users.yml
|
170
167
|
- test/dummy/test/controllers/users_controller_test.rb
|
@@ -176,10 +173,6 @@ test_files:
|
|
176
173
|
- test/dummy/db/migrate/20151010135059_create_users.rb
|
177
174
|
- test/dummy/config/secrets.yml
|
178
175
|
- test/dummy/config/routes.rb
|
179
|
-
- test/dummy/config/environment.rb
|
180
|
-
- test/dummy/config/database.yml
|
181
|
-
- test/dummy/config/boot.rb
|
182
|
-
- test/dummy/config/application.rb
|
183
176
|
- test/dummy/config/locales/en.yml
|
184
177
|
- test/dummy/config/initializers/wrap_parameters.rb
|
185
178
|
- test/dummy/config/initializers/session_store.rb
|
@@ -192,6 +185,11 @@ test_files:
|
|
192
185
|
- test/dummy/config/environments/test.rb
|
193
186
|
- test/dummy/config/environments/production.rb
|
194
187
|
- test/dummy/config/environments/development.rb
|
188
|
+
- test/dummy/config/environment.rb
|
189
|
+
- test/dummy/config/database.yml
|
190
|
+
- test/dummy/config/boot.rb
|
191
|
+
- test/dummy/config/application.rb
|
192
|
+
- test/dummy/config.ru
|
195
193
|
- test/dummy/bin/setup
|
196
194
|
- test/dummy/bin/rake
|
197
195
|
- test/dummy/bin/rails
|
@@ -212,4 +210,6 @@ test_files:
|
|
212
210
|
- test/dummy/app/assets/stylesheets/application.css
|
213
211
|
- test/dummy/app/assets/javascripts/users.js
|
214
212
|
- test/dummy/app/assets/javascripts/application.js
|
213
|
+
- test/dummy/Rakefile
|
214
|
+
- test/dummy/README.rdoc
|
215
215
|
- test/controllers/tasks_management/tasks_controller_test.rb
|