activity_notification 1.3.0 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +41 -5
  3. data/CHANGELOG.md +20 -0
  4. data/Gemfile +4 -1
  5. data/Gemfile.lock +81 -70
  6. data/README.md +152 -12
  7. data/activity_notification.gemspec +6 -4
  8. data/gemfiles/Gemfile.rails-4.2.lock +27 -22
  9. data/gemfiles/Gemfile.rails-5.0.lock +26 -21
  10. data/gemfiles/Gemfile.rails-5.1 +15 -0
  11. data/gemfiles/Gemfile.rails-5.1.lock +229 -0
  12. data/lib/activity_notification/apis/notification_api.rb +2 -2
  13. data/lib/activity_notification/apis/subscription_api.rb +7 -7
  14. data/lib/activity_notification/controllers/common_controller.rb +2 -2
  15. data/lib/activity_notification/helpers/view_helpers.rb +1 -1
  16. data/lib/activity_notification/models/concerns/notifiable.rb +19 -1
  17. data/lib/activity_notification/models/concerns/target.rb +5 -3
  18. data/lib/activity_notification/orm/active_record/notification.rb +3 -1
  19. data/lib/activity_notification/orm/active_record/subscription.rb +3 -1
  20. data/lib/activity_notification/orm/mongoid.rb +2 -2
  21. data/lib/activity_notification/renderable.rb +1 -1
  22. data/lib/activity_notification/roles/acts_as_notifiable.rb +98 -17
  23. data/lib/activity_notification/version.rb +1 -1
  24. data/spec/concerns/apis/notification_api_spec.rb +9 -8
  25. data/spec/concerns/apis/subscription_api_spec.rb +28 -28
  26. data/spec/concerns/models/notifier_spec.rb +1 -1
  27. data/spec/concerns/models/subscriber_spec.rb +7 -7
  28. data/spec/concerns/models/target_spec.rb +20 -20
  29. data/spec/controllers/notifications_controller_shared_examples.rb +19 -8
  30. data/spec/controllers/subscriptions_controller_shared_examples.rb +16 -5
  31. data/spec/models/notification_spec.rb +4 -4
  32. data/spec/models/subscription_spec.rb +16 -12
  33. data/spec/rails_app/app/controllers/articles_controller.rb +1 -1
  34. data/spec/rails_app/app/controllers/comments_controller.rb +0 -1
  35. data/spec/rails_app/app/models/admin.rb +29 -8
  36. data/spec/rails_app/app/models/article.rb +45 -13
  37. data/spec/rails_app/app/models/comment.rb +107 -42
  38. data/spec/rails_app/app/models/user.rb +45 -12
  39. data/spec/rails_app/app/views/layouts/_header.html.erb +1 -0
  40. data/spec/rails_app/config/database.yml +26 -15
  41. data/spec/rails_app/config/initializers/devise.rb +5 -1
  42. data/spec/rails_app/db/migrate/20160715050420_create_activity_notification_tables.rb +1 -1
  43. data/spec/rails_app/db/migrate/20160715050433_create_test_tables.rb +1 -1
  44. data/spec/rails_app/db/seeds.rb +31 -8
  45. data/spec/roles/acts_as_notifiable_spec.rb +154 -1
  46. data/spec/spec_helper.rb +7 -2
  47. metadata +47 -17
@@ -20,17 +20,19 @@ Gem::Specification.new do |s|
20
20
  s.require_paths = ["lib"]
21
21
  s.required_ruby_version = '>= 2.1.0'
22
22
 
23
- s.add_dependency 'railties', '>= 4.2.0', '< 5.1'
23
+ s.add_dependency 'railties', '>= 4.2.0', '< 5.2'
24
24
  s.add_dependency 'activerecord', '>= 4.2.0'
25
25
  s.add_dependency 'i18n', '>= 0.5.0'
26
26
  s.add_dependency 'jquery-rails', '>= 3.1.1'
27
27
 
28
- s.add_development_dependency 'mongoid', '>= 4.0.0'
29
28
  s.add_development_dependency 'sqlite3', '~> 1.3.13'
30
- s.add_development_dependency 'rspec-rails', '~> 3.5.1'
29
+ s.add_development_dependency 'mysql2', '~> 0.4.6'
30
+ s.add_development_dependency 'pg', '~> 0.20.0'
31
+ s.add_development_dependency 'mongoid', '>= 4.0.0'
32
+ s.add_development_dependency 'rspec-rails', '~> 3.5.2'
31
33
  s.add_development_dependency 'factory_girl_rails', '~> 4.8.0'
32
34
  s.add_development_dependency 'simplecov', '~> 0.14.1'
33
- s.add_development_dependency 'yard', '~> 0.9.8'
35
+ s.add_development_dependency 'yard', '~> 0.9.9'
34
36
  s.add_development_dependency 'yard-activesupport-concern', '~> 0.0.1'
35
37
  s.add_development_dependency 'devise', '~> 4.2.1'
36
38
  s.add_development_dependency 'aws-sdk', '~> 2'
@@ -1,11 +1,11 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- activity_notification (1.3.0)
4
+ activity_notification (1.4.0)
5
5
  activerecord (>= 4.2.0)
6
6
  i18n (>= 0.5.0)
7
7
  jquery-rails (>= 3.1.1)
8
- railties (>= 4.2.0, < 5.1)
8
+ railties (>= 4.2.0, < 5.2)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
@@ -49,19 +49,19 @@ GEM
49
49
  railties (>= 3.0)
50
50
  rspec-rails (>= 2.2)
51
51
  arel (6.0.4)
52
- aws-sdk (2.9.1)
53
- aws-sdk-resources (= 2.9.1)
54
- aws-sdk-core (2.9.1)
52
+ aws-sdk (2.9.16)
53
+ aws-sdk-resources (= 2.9.16)
54
+ aws-sdk-core (2.9.16)
55
55
  aws-sigv4 (~> 1.0)
56
56
  jmespath (~> 1.0)
57
- aws-sdk-resources (2.9.1)
58
- aws-sdk-core (= 2.9.1)
57
+ aws-sdk-resources (2.9.16)
58
+ aws-sdk-core (= 2.9.16)
59
59
  aws-sigv4 (1.0.0)
60
60
  bcrypt (3.1.11)
61
61
  bson (4.2.1)
62
62
  builder (3.2.3)
63
63
  concurrent-ruby (1.0.5)
64
- coveralls (0.8.20)
64
+ coveralls (0.8.21)
65
65
  json (>= 1.8, < 3)
66
66
  simplecov (~> 0.14.1)
67
67
  term-ansicolor (~> 1.3)
@@ -81,36 +81,38 @@ GEM
81
81
  factory_girl_rails (4.8.0)
82
82
  factory_girl (~> 4.8.0)
83
83
  railties (>= 3.0.0)
84
- globalid (0.3.7)
85
- activesupport (>= 4.1.0)
84
+ globalid (0.4.0)
85
+ activesupport (>= 4.2.0)
86
86
  i18n (0.8.1)
87
87
  jmespath (1.3.1)
88
88
  jquery-rails (4.3.1)
89
89
  rails-dom-testing (>= 1, < 3)
90
90
  railties (>= 4.2.0)
91
91
  thor (>= 0.14, < 2.0)
92
- json (2.0.3)
92
+ json (2.1.0)
93
93
  loofah (2.0.3)
94
94
  nokogiri (>= 1.5.9)
95
- mail (2.6.4)
95
+ mail (2.6.5)
96
96
  mime-types (>= 1.16, < 4)
97
97
  mime-types (3.1)
98
98
  mime-types-data (~> 3.2015)
99
99
  mime-types-data (3.2016.0521)
100
100
  mini_portile2 (2.1.0)
101
- minitest (5.10.1)
101
+ minitest (5.10.2)
102
102
  mongo (2.4.1)
103
103
  bson (>= 4.2.1, < 5.0.0)
104
- mongoid (5.2.0)
104
+ mongoid (5.2.1)
105
105
  activemodel (~> 4.0)
106
106
  mongo (>= 2.4.1, < 3.0.0)
107
107
  origin (~> 2.3)
108
108
  tzinfo (>= 0.3.37)
109
- nokogiri (1.7.1)
109
+ mysql2 (0.4.6)
110
+ nokogiri (1.7.2)
110
111
  mini_portile2 (~> 2.1.0)
111
112
  origin (2.3.0)
112
113
  orm_adapter (0.5.0)
113
- rack (1.6.5)
114
+ pg (0.20.0)
115
+ rack (1.6.6)
114
116
  rack-test (0.6.3)
115
117
  rack (>= 1.0)
116
118
  rails (4.2.8)
@@ -138,8 +140,9 @@ GEM
138
140
  rake (>= 0.8.7)
139
141
  thor (>= 0.18.1, < 2.0)
140
142
  rake (12.0.0)
141
- responders (2.3.0)
142
- railties (>= 4.2.0, < 5.1)
143
+ responders (2.4.0)
144
+ actionpack (>= 4.2.0, < 5.3)
145
+ railties (>= 4.2.0, < 5.3)
143
146
  rspec-core (3.5.4)
144
147
  rspec-support (~> 3.5.0)
145
148
  rspec-expectations (3.5.0)
@@ -171,7 +174,7 @@ GEM
171
174
  activesupport (>= 4.0)
172
175
  sprockets (>= 3.0.0)
173
176
  sqlite3 (1.3.13)
174
- term-ansicolor (1.5.0)
177
+ term-ansicolor (1.6.0)
175
178
  tins (~> 1.0)
176
179
  thor (0.19.4)
177
180
  thread_safe (0.3.6)
@@ -181,7 +184,7 @@ GEM
181
184
  thread_safe (~> 0.1)
182
185
  warden (1.2.7)
183
186
  rack (>= 1.0)
184
- yard (0.9.8)
187
+ yard (0.9.9)
185
188
  yard-activesupport-concern (0.0.1)
186
189
  yard (>= 0.8)
187
190
 
@@ -196,13 +199,15 @@ DEPENDENCIES
196
199
  devise (~> 4.2.1)
197
200
  factory_girl_rails (~> 4.8.0)
198
201
  mongoid (>= 4.0.0)
202
+ mysql2 (~> 0.4.6)
203
+ pg (~> 0.20.0)
199
204
  rails (~> 4.2)
200
- rspec-rails (~> 3.5.1)
205
+ rspec-rails (~> 3.5.2)
201
206
  simplecov (~> 0.14.1)
202
207
  slack-notifier (>= 1.5.1)
203
208
  sqlite3 (~> 1.3.13)
204
209
  timecop
205
- yard (~> 0.9.8)
210
+ yard (~> 0.9.9)
206
211
  yard-activesupport-concern (~> 0.0.1)
207
212
 
208
213
  BUNDLED WITH
@@ -1,11 +1,11 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- activity_notification (1.3.0)
4
+ activity_notification (1.4.0)
5
5
  activerecord (>= 4.2.0)
6
6
  i18n (>= 0.5.0)
7
7
  jquery-rails (>= 3.1.1)
8
- railties (>= 4.2.0, < 5.1)
8
+ railties (>= 4.2.0, < 5.2)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
@@ -52,19 +52,19 @@ GEM
52
52
  railties (>= 3.0)
53
53
  rspec-rails (>= 2.2)
54
54
  arel (7.1.4)
55
- aws-sdk (2.9.1)
56
- aws-sdk-resources (= 2.9.1)
57
- aws-sdk-core (2.9.1)
55
+ aws-sdk (2.9.16)
56
+ aws-sdk-resources (= 2.9.16)
57
+ aws-sdk-core (2.9.16)
58
58
  aws-sigv4 (~> 1.0)
59
59
  jmespath (~> 1.0)
60
- aws-sdk-resources (2.9.1)
61
- aws-sdk-core (= 2.9.1)
60
+ aws-sdk-resources (2.9.16)
61
+ aws-sdk-core (= 2.9.16)
62
62
  aws-sigv4 (1.0.0)
63
63
  bcrypt (3.1.11)
64
64
  bson (4.2.1)
65
65
  builder (3.2.3)
66
66
  concurrent-ruby (1.0.5)
67
- coveralls (0.8.20)
67
+ coveralls (0.8.21)
68
68
  json (>= 1.8, < 3)
69
69
  simplecov (~> 0.14.1)
70
70
  term-ansicolor (~> 1.3)
@@ -84,35 +84,37 @@ GEM
84
84
  factory_girl_rails (4.8.0)
85
85
  factory_girl (~> 4.8.0)
86
86
  railties (>= 3.0.0)
87
- globalid (0.3.7)
88
- activesupport (>= 4.1.0)
87
+ globalid (0.4.0)
88
+ activesupport (>= 4.2.0)
89
89
  i18n (0.8.1)
90
90
  jmespath (1.3.1)
91
91
  jquery-rails (4.3.1)
92
92
  rails-dom-testing (>= 1, < 3)
93
93
  railties (>= 4.2.0)
94
94
  thor (>= 0.14, < 2.0)
95
- json (2.0.3)
95
+ json (2.1.0)
96
96
  loofah (2.0.3)
97
97
  nokogiri (>= 1.5.9)
98
- mail (2.6.4)
98
+ mail (2.6.5)
99
99
  mime-types (>= 1.16, < 4)
100
100
  method_source (0.8.2)
101
101
  mime-types (3.1)
102
102
  mime-types-data (~> 3.2015)
103
103
  mime-types-data (3.2016.0521)
104
104
  mini_portile2 (2.1.0)
105
- minitest (5.10.1)
105
+ minitest (5.10.2)
106
106
  mongo (2.4.1)
107
107
  bson (>= 4.2.1, < 5.0.0)
108
108
  mongoid (6.1.0)
109
109
  activemodel (~> 5.0)
110
110
  mongo (>= 2.4.1, < 3.0.0)
111
+ mysql2 (0.4.6)
111
112
  nio4r (2.0.0)
112
- nokogiri (1.7.1)
113
+ nokogiri (1.7.2)
113
114
  mini_portile2 (~> 2.1.0)
114
115
  orm_adapter (0.5.0)
115
- rack (2.0.1)
116
+ pg (0.20.0)
117
+ rack (2.0.2)
116
118
  rack-test (0.6.3)
117
119
  rack (>= 1.0)
118
120
  rails (5.0.2)
@@ -143,8 +145,9 @@ GEM
143
145
  rake (>= 0.8.7)
144
146
  thor (>= 0.18.1, < 2.0)
145
147
  rake (12.0.0)
146
- responders (2.3.0)
147
- railties (>= 4.2.0, < 5.1)
148
+ responders (2.4.0)
149
+ actionpack (>= 4.2.0, < 5.3)
150
+ railties (>= 4.2.0, < 5.3)
148
151
  rspec-core (3.5.4)
149
152
  rspec-support (~> 3.5.0)
150
153
  rspec-expectations (3.5.0)
@@ -176,7 +179,7 @@ GEM
176
179
  activesupport (>= 4.0)
177
180
  sprockets (>= 3.0.0)
178
181
  sqlite3 (1.3.13)
179
- term-ansicolor (1.5.0)
182
+ term-ansicolor (1.6.0)
180
183
  tins (~> 1.0)
181
184
  thor (0.19.4)
182
185
  thread_safe (0.3.6)
@@ -189,7 +192,7 @@ GEM
189
192
  websocket-driver (0.6.5)
190
193
  websocket-extensions (>= 0.1.0)
191
194
  websocket-extensions (0.1.2)
192
- yard (0.9.8)
195
+ yard (0.9.9)
193
196
  yard-activesupport-concern (0.0.1)
194
197
  yard (>= 0.8)
195
198
 
@@ -204,14 +207,16 @@ DEPENDENCIES
204
207
  devise (~> 4.2.1)
205
208
  factory_girl_rails (~> 4.8.0)
206
209
  mongoid (>= 4.0.0)
210
+ mysql2 (~> 0.4.6)
211
+ pg (~> 0.20.0)
207
212
  rails (~> 5.0)
208
213
  rails-controller-testing
209
- rspec-rails (~> 3.5.1)
214
+ rspec-rails (~> 3.5.2)
210
215
  simplecov (~> 0.14.1)
211
216
  slack-notifier (>= 1.5.1)
212
217
  sqlite3 (~> 1.3.13)
213
218
  timecop
214
- yard (~> 0.9.8)
219
+ yard (~> 0.9.9)
215
220
  yard-activesupport-concern (~> 0.0.1)
216
221
 
217
222
  BUNDLED WITH
@@ -0,0 +1,15 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'rails', '~> 5.1'
6
+
7
+ #TODO Remove it after devise supporting rails 5.1 is released
8
+ gem 'devise', github: 'plataformatec/devise', ref: '83002017'
9
+
10
+ group :test do
11
+ gem 'rails-controller-testing'
12
+ gem 'ammeter'
13
+ gem 'timecop'
14
+ gem 'coveralls', require: false
15
+ end
@@ -0,0 +1,229 @@
1
+ GIT
2
+ remote: git://github.com/plataformatec/devise.git
3
+ revision: 83002017ea4761e30796f3b288be9c7d9b870fcd
4
+ ref: 83002017
5
+ specs:
6
+ devise (4.2.1)
7
+ bcrypt (~> 3.0)
8
+ orm_adapter (~> 0.1)
9
+ railties (>= 4.1.0, < 5.2)
10
+ responders
11
+ warden (~> 1.2.3)
12
+
13
+ PATH
14
+ remote: ..
15
+ specs:
16
+ activity_notification (1.4.0)
17
+ activerecord (>= 4.2.0)
18
+ i18n (>= 0.5.0)
19
+ jquery-rails (>= 3.1.1)
20
+ railties (>= 4.2.0, < 5.2)
21
+
22
+ GEM
23
+ remote: https://rubygems.org/
24
+ specs:
25
+ actioncable (5.1.0)
26
+ actionpack (= 5.1.0)
27
+ nio4r (~> 2.0)
28
+ websocket-driver (~> 0.6.1)
29
+ actionmailer (5.1.0)
30
+ actionpack (= 5.1.0)
31
+ actionview (= 5.1.0)
32
+ activejob (= 5.1.0)
33
+ mail (~> 2.5, >= 2.5.4)
34
+ rails-dom-testing (~> 2.0)
35
+ actionpack (5.1.0)
36
+ actionview (= 5.1.0)
37
+ activesupport (= 5.1.0)
38
+ rack (~> 2.0)
39
+ rack-test (~> 0.6.3)
40
+ rails-dom-testing (~> 2.0)
41
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
42
+ actionview (5.1.0)
43
+ activesupport (= 5.1.0)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
48
+ activejob (5.1.0)
49
+ activesupport (= 5.1.0)
50
+ globalid (>= 0.3.6)
51
+ activemodel (5.1.0)
52
+ activesupport (= 5.1.0)
53
+ activerecord (5.1.0)
54
+ activemodel (= 5.1.0)
55
+ activesupport (= 5.1.0)
56
+ arel (~> 8.0)
57
+ activesupport (5.1.0)
58
+ concurrent-ruby (~> 1.0, >= 1.0.2)
59
+ i18n (~> 0.7)
60
+ minitest (~> 5.1)
61
+ tzinfo (~> 1.1)
62
+ ammeter (1.1.4)
63
+ activesupport (>= 3.0)
64
+ railties (>= 3.0)
65
+ rspec-rails (>= 2.2)
66
+ arel (8.0.0)
67
+ aws-sdk (2.9.16)
68
+ aws-sdk-resources (= 2.9.16)
69
+ aws-sdk-core (2.9.16)
70
+ aws-sigv4 (~> 1.0)
71
+ jmespath (~> 1.0)
72
+ aws-sdk-resources (2.9.16)
73
+ aws-sdk-core (= 2.9.16)
74
+ aws-sigv4 (1.0.0)
75
+ bcrypt (3.1.11)
76
+ bson (4.2.1)
77
+ builder (3.2.3)
78
+ concurrent-ruby (1.0.5)
79
+ coveralls (0.8.21)
80
+ json (>= 1.8, < 3)
81
+ simplecov (~> 0.14.1)
82
+ term-ansicolor (~> 1.3)
83
+ thor (~> 0.19.4)
84
+ tins (~> 1.6)
85
+ diff-lcs (1.3)
86
+ docile (1.1.5)
87
+ erubi (1.6.0)
88
+ factory_girl (4.8.0)
89
+ activesupport (>= 3.0.0)
90
+ factory_girl_rails (4.8.0)
91
+ factory_girl (~> 4.8.0)
92
+ railties (>= 3.0.0)
93
+ globalid (0.4.0)
94
+ activesupport (>= 4.2.0)
95
+ i18n (0.8.1)
96
+ jmespath (1.3.1)
97
+ jquery-rails (4.3.1)
98
+ rails-dom-testing (>= 1, < 3)
99
+ railties (>= 4.2.0)
100
+ thor (>= 0.14, < 2.0)
101
+ json (2.1.0)
102
+ loofah (2.0.3)
103
+ nokogiri (>= 1.5.9)
104
+ mail (2.6.5)
105
+ mime-types (>= 1.16, < 4)
106
+ method_source (0.8.2)
107
+ mime-types (3.1)
108
+ mime-types-data (~> 3.2015)
109
+ mime-types-data (3.2016.0521)
110
+ mini_portile2 (2.1.0)
111
+ minitest (5.10.2)
112
+ mongo (2.4.1)
113
+ bson (>= 4.2.1, < 5.0.0)
114
+ mongoid (6.1.0)
115
+ activemodel (~> 5.0)
116
+ mongo (>= 2.4.1, < 3.0.0)
117
+ mysql2 (0.4.6)
118
+ nio4r (2.0.0)
119
+ nokogiri (1.7.2)
120
+ mini_portile2 (~> 2.1.0)
121
+ orm_adapter (0.5.0)
122
+ pg (0.20.0)
123
+ rack (2.0.2)
124
+ rack-test (0.6.3)
125
+ rack (>= 1.0)
126
+ rails (5.1.0)
127
+ actioncable (= 5.1.0)
128
+ actionmailer (= 5.1.0)
129
+ actionpack (= 5.1.0)
130
+ actionview (= 5.1.0)
131
+ activejob (= 5.1.0)
132
+ activemodel (= 5.1.0)
133
+ activerecord (= 5.1.0)
134
+ activesupport (= 5.1.0)
135
+ bundler (>= 1.3.0, < 2.0)
136
+ railties (= 5.1.0)
137
+ sprockets-rails (>= 2.0.0)
138
+ rails-controller-testing (1.0.1)
139
+ actionpack (~> 5.x)
140
+ actionview (~> 5.x)
141
+ activesupport (~> 5.x)
142
+ rails-dom-testing (2.0.2)
143
+ activesupport (>= 4.2.0, < 6.0)
144
+ nokogiri (~> 1.6)
145
+ rails-html-sanitizer (1.0.3)
146
+ loofah (~> 2.0)
147
+ railties (5.1.0)
148
+ actionpack (= 5.1.0)
149
+ activesupport (= 5.1.0)
150
+ method_source
151
+ rake (>= 0.8.7)
152
+ thor (>= 0.18.1, < 2.0)
153
+ rake (12.0.0)
154
+ responders (2.4.0)
155
+ actionpack (>= 4.2.0, < 5.3)
156
+ railties (>= 4.2.0, < 5.3)
157
+ rspec-core (3.5.4)
158
+ rspec-support (~> 3.5.0)
159
+ rspec-expectations (3.5.0)
160
+ diff-lcs (>= 1.2.0, < 2.0)
161
+ rspec-support (~> 3.5.0)
162
+ rspec-mocks (3.5.0)
163
+ diff-lcs (>= 1.2.0, < 2.0)
164
+ rspec-support (~> 3.5.0)
165
+ rspec-rails (3.5.2)
166
+ actionpack (>= 3.0)
167
+ activesupport (>= 3.0)
168
+ railties (>= 3.0)
169
+ rspec-core (~> 3.5.0)
170
+ rspec-expectations (~> 3.5.0)
171
+ rspec-mocks (~> 3.5.0)
172
+ rspec-support (~> 3.5.0)
173
+ rspec-support (3.5.0)
174
+ simplecov (0.14.1)
175
+ docile (~> 1.1.0)
176
+ json (>= 1.8, < 3)
177
+ simplecov-html (~> 0.10.0)
178
+ simplecov-html (0.10.0)
179
+ slack-notifier (2.1.0)
180
+ sprockets (3.7.1)
181
+ concurrent-ruby (~> 1.0)
182
+ rack (> 1, < 3)
183
+ sprockets-rails (3.2.0)
184
+ actionpack (>= 4.0)
185
+ activesupport (>= 4.0)
186
+ sprockets (>= 3.0.0)
187
+ sqlite3 (1.3.13)
188
+ term-ansicolor (1.6.0)
189
+ tins (~> 1.0)
190
+ thor (0.19.4)
191
+ thread_safe (0.3.6)
192
+ timecop (0.8.1)
193
+ tins (1.13.2)
194
+ tzinfo (1.2.3)
195
+ thread_safe (~> 0.1)
196
+ warden (1.2.7)
197
+ rack (>= 1.0)
198
+ websocket-driver (0.6.5)
199
+ websocket-extensions (>= 0.1.0)
200
+ websocket-extensions (0.1.2)
201
+ yard (0.9.9)
202
+ yard-activesupport-concern (0.0.1)
203
+ yard (>= 0.8)
204
+
205
+ PLATFORMS
206
+ ruby
207
+
208
+ DEPENDENCIES
209
+ activity_notification!
210
+ ammeter
211
+ aws-sdk (~> 2)
212
+ coveralls
213
+ devise!
214
+ factory_girl_rails (~> 4.8.0)
215
+ mongoid (>= 4.0.0)
216
+ mysql2 (~> 0.4.6)
217
+ pg (~> 0.20.0)
218
+ rails (~> 5.1)
219
+ rails-controller-testing
220
+ rspec-rails (~> 3.5.2)
221
+ simplecov (~> 0.14.1)
222
+ slack-notifier (>= 1.5.1)
223
+ sqlite3 (~> 1.3.13)
224
+ timecop
225
+ yard (~> 0.9.9)
226
+ yard-activesupport-concern (~> 0.0.1)
227
+
228
+ BUNDLED WITH
229
+ 1.14.6