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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26d23da7cd0f695d8fd1ce22d04cd052045cf364
4
- data.tar.gz: b3260061720a1bf077ac17365868a8978bd94bc8
3
+ metadata.gz: 4dc44dedfddf4747f77e004c777f9ef35f7e5f6b
4
+ data.tar.gz: 55322c56eb6848b72d9b0f65b4b69653688ffdc3
5
5
  SHA512:
6
- metadata.gz: bb5ffe9f809552fb4a539f6ae90a9336d1a5584223310ca143397caeeca23f3383cec244729fa80672bd874b7e32007f4d78dedaf5633824968fb79280a62733
7
- data.tar.gz: f197a22438904cfb960f01cd7354febc9c687331778d2418bbb79923e5406cb4c266a12eda63b0182edbb52e24387947cbf13d6b6c3a93f0dda6dde4d9e62ad6
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: [:high, :medium, :low]
8
+ enum priority: [:low, :medium, :high]
9
9
  enum state: [:pending, :rejected, :started, :finished, :accepted]
10
10
 
11
11
  after_save do
@@ -1,3 +1,3 @@
1
1
  module TasksManagement
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
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.2
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-12 00:00:00.000000000 Z
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