go_gamification 0.0.14 → 0.0.15

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: '0429e9e9375cfdcb5549cdff07eb458656fa1a8a'
4
- data.tar.gz: cd8cf4b8162f85012de2834e65087d72bc2122bc
3
+ metadata.gz: c4ad557e8a5db10702f3275f96148e171cc146b3
4
+ data.tar.gz: 97a872ab543cd1a65d7cc7873f7191c916d3016d
5
5
  SHA512:
6
- metadata.gz: 72bc47d33e38ba5105cff49ce7c1c11234aef26dc564b19eb786f076407383629ebbcb41ed47e210bad98fe527fe02bbba483f61fa71b2b208a07bf3ae9a2b3b
7
- data.tar.gz: 2b6d90a4ad1c2357a71d5214b40e3f034c522e74df2d8f0b9ccdca31ffbc376d67f08e440b6eda515b411539e62b7f625f3b00a45629c4dc420eedc706d5d9af
6
+ metadata.gz: e31adfb09faf3b00c6f2a393fde6b5ea54af6e6bc3b5e4314f0fa82dcd00b9f4b969f5c725a6bf6df60179297e8b52a82134e8cf8d5ff326152c98a385abfc06
7
+ data.tar.gz: 5f4342cc41395ed8956c8d27c4337e576c13d0dce671e1168df199ba9c84670fce1e8c54a0c9599fd06b9c4c4ab5eb03f25741215a567af7fc1ed97f80415e9d
@@ -0,0 +1,5 @@
1
+ class AlterTableGoGamificationCount < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :gamification_goals, :count, :integer
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AlterTableGoGamificationLevels < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :gamification_levels, :level, :integer
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module GoGamification
2
- VERSION = "0.0.14"
2
+ VERSION = "0.0.15"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: go_gamification
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.14
4
+ version: 0.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - João Carlos Ottobboni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-25 00:00:00.000000000 Z
11
+ date: 2017-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: draper
@@ -115,6 +115,8 @@ files:
115
115
  - db/migrate/20171020182248_rename_go_gamification_tasks_to_goals.rb
116
116
  - db/migrate/20171020182329_add_seen_at_to_go_gamification_rewards.rb
117
117
  - db/migrate/20171023230506_create_go_gamification_levels.rb
118
+ - db/migrate/20171026001848_alter_table_go_gamification_count.rb
119
+ - db/migrate/20171026003231_alter_table_go_gamification_levels.rb
118
120
  - lib/go_gamification.rb
119
121
  - lib/go_gamification/engine.rb
120
122
  - lib/go_gamification/version.rb