bombbomb 2.0.20679 → 2.0.21432

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.
Files changed (40) hide show
  1. checksums.yaml +5 -13
  2. data/README.md +28 -12
  3. data/bombbomb.gemspec +1 -1
  4. data/docs/Curriculum.md +15 -0
  5. data/docs/CurriculumApi.md +109 -0
  6. data/docs/CurriculumUserProgress.md +12 -0
  7. data/docs/CurriculumWithProgress.md +15 -0
  8. data/docs/PromptsApi.md +3 -3
  9. data/docs/TeamPublicRepresentation.md +10 -0
  10. data/docs/TeamsApi.md +344 -5
  11. data/docs/UtilitiesApi.md +4 -4
  12. data/docs/WebhooksApi.md +45 -4
  13. data/lib/bombbomb.rb +6 -1
  14. data/lib/bombbomb/api/curriculum_api.rb +143 -0
  15. data/lib/bombbomb/api/prompts_api.rb +4 -4
  16. data/lib/bombbomb/api/teams_api.rb +374 -6
  17. data/lib/bombbomb/api/utilities_api.rb +5 -5
  18. data/lib/bombbomb/api/webhooks_api.rb +57 -5
  19. data/lib/bombbomb/api_client.rb +1 -1
  20. data/lib/bombbomb/api_error.rb +1 -1
  21. data/lib/bombbomb/configuration.rb +1 -1
  22. data/lib/bombbomb/models/bb_web_hook.rb +1 -1
  23. data/lib/bombbomb/models/curriculum.rb +272 -0
  24. data/lib/bombbomb/models/curriculum_user_progress.rb +240 -0
  25. data/lib/bombbomb/models/curriculum_with_progress.rb +272 -0
  26. data/lib/bombbomb/models/inline_response_200.rb +1 -1
  27. data/lib/bombbomb/models/inline_response_200_items.rb +1 -1
  28. data/lib/bombbomb/models/jericho_configuration.rb +1 -1
  29. data/lib/bombbomb/models/jericho_performance.rb +1 -1
  30. data/lib/bombbomb/models/o_auth_client.rb +1 -1
  31. data/lib/bombbomb/models/string.rb +1 -1
  32. data/lib/bombbomb/models/team_public_representation.rb +220 -0
  33. data/lib/bombbomb/models/video_email_prompt.rb +1 -1
  34. data/lib/bombbomb/version.rb +2 -2
  35. data/spec/api/curriculum_api_spec.rb +69 -0
  36. data/spec/models/curriculum_spec.rb +95 -0
  37. data/spec/models/curriculum_user_progress_spec.rb +77 -0
  38. data/spec/models/curriculum_with_progress_spec.rb +95 -0
  39. data/spec/models/team_public_representation_spec.rb +65 -0
  40. metadata +60 -40
@@ -0,0 +1,77 @@
1
+ =begin
2
+ #BombBomb
3
+
4
+ #We make it easy to build relationships using simple videos.
5
+
6
+ OpenAPI spec version: 2.0.21432
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for BombBomb::CurriculumUserProgress
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'CurriculumUserProgress' do
32
+ before do
33
+ # run before each test
34
+ @instance = BombBomb::CurriculumUserProgress.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of CurriculumUserProgress' do
42
+ it 'should create an instact of CurriculumUserProgress' do
43
+ expect(@instance).to be_instance_of(BombBomb::CurriculumUserProgress)
44
+ end
45
+ end
46
+ describe 'test attribute "id"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "user_id"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "curriculum_item_id"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "curriculum_id"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "completed_date"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ end
77
+
@@ -0,0 +1,95 @@
1
+ =begin
2
+ #BombBomb
3
+
4
+ #We make it easy to build relationships using simple videos.
5
+
6
+ OpenAPI spec version: 2.0.21432
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for BombBomb::CurriculumWithProgress
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'CurriculumWithProgress' do
32
+ before do
33
+ # run before each test
34
+ @instance = BombBomb::CurriculumWithProgress.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of CurriculumWithProgress' do
42
+ it 'should create an instact of CurriculumWithProgress' do
43
+ expect(@instance).to be_instance_of(BombBomb::CurriculumWithProgress)
44
+ end
45
+ end
46
+ describe 'test attribute "progress"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "id"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "name"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "html_intro"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "img_url"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "item_count"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "render_as"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "visible_to_all_users"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
94
+ end
95
+
@@ -0,0 +1,65 @@
1
+ =begin
2
+ #BombBomb
3
+
4
+ #We make it easy to build relationships using simple videos.
5
+
6
+ OpenAPI spec version: 2.0.21432
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for BombBomb::TeamPublicRepresentation
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'TeamPublicRepresentation' do
32
+ before do
33
+ # run before each test
34
+ @instance = BombBomb::TeamPublicRepresentation.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of TeamPublicRepresentation' do
42
+ it 'should create an instact of TeamPublicRepresentation' do
43
+ expect(@instance).to be_instance_of(BombBomb::TeamPublicRepresentation)
44
+ end
45
+ end
46
+ describe 'test attribute "id"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "name"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "created_date"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ end
65
+
metadata CHANGED
@@ -1,193 +1,193 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bombbomb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.20679
4
+ version: 2.0.21432
5
5
  platform: ruby
6
6
  authors:
7
7
  - BombBomb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-08 00:00:00.000000000 Z
11
+ date: 2016-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.0'
20
- - - ! '>='
20
+ - - ">="
21
21
  - !ruby/object:Gem::Version
22
22
  version: 1.0.1
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - ~>
27
+ - - "~>"
28
28
  - !ruby/object:Gem::Version
29
29
  version: '1.0'
30
- - - ! '>='
30
+ - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.0.1
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: json
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - ~>
37
+ - - "~>"
38
38
  - !ruby/object:Gem::Version
39
39
  version: '1.8'
40
- - - ! '>='
40
+ - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  version: 1.8.3
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - ~>
47
+ - - "~>"
48
48
  - !ruby/object:Gem::Version
49
49
  version: '1.8'
50
- - - ! '>='
50
+ - - ">="
51
51
  - !ruby/object:Gem::Version
52
52
  version: 1.8.3
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: rspec
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - ~>
57
+ - - "~>"
58
58
  - !ruby/object:Gem::Version
59
59
  version: '3.4'
60
- - - ! '>='
60
+ - - ">="
61
61
  - !ruby/object:Gem::Version
62
62
  version: 3.4.0
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ~>
67
+ - - "~>"
68
68
  - !ruby/object:Gem::Version
69
69
  version: '3.4'
70
- - - ! '>='
70
+ - - ">="
71
71
  - !ruby/object:Gem::Version
72
72
  version: 3.4.0
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: vcr
75
75
  requirement: !ruby/object:Gem::Requirement
76
76
  requirements:
77
- - - ~>
77
+ - - "~>"
78
78
  - !ruby/object:Gem::Version
79
79
  version: '3.0'
80
- - - ! '>='
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: 3.0.1
83
83
  type: :development
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ~>
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
89
  version: '3.0'
90
- - - ! '>='
90
+ - - ">="
91
91
  - !ruby/object:Gem::Version
92
92
  version: 3.0.1
93
93
  - !ruby/object:Gem::Dependency
94
94
  name: webmock
95
95
  requirement: !ruby/object:Gem::Requirement
96
96
  requirements:
97
- - - ~>
97
+ - - "~>"
98
98
  - !ruby/object:Gem::Version
99
99
  version: '1.24'
100
- - - ! '>='
100
+ - - ">="
101
101
  - !ruby/object:Gem::Version
102
102
  version: 1.24.3
103
103
  type: :development
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - ~>
107
+ - - "~>"
108
108
  - !ruby/object:Gem::Version
109
109
  version: '1.24'
110
- - - ! '>='
110
+ - - ">="
111
111
  - !ruby/object:Gem::Version
112
112
  version: 1.24.3
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: autotest
115
115
  requirement: !ruby/object:Gem::Requirement
116
116
  requirements:
117
- - - ~>
117
+ - - "~>"
118
118
  - !ruby/object:Gem::Version
119
119
  version: '4.4'
120
- - - ! '>='
120
+ - - ">="
121
121
  - !ruby/object:Gem::Version
122
122
  version: 4.4.6
123
123
  type: :development
124
124
  prerelease: false
125
125
  version_requirements: !ruby/object:Gem::Requirement
126
126
  requirements:
127
- - - ~>
127
+ - - "~>"
128
128
  - !ruby/object:Gem::Version
129
129
  version: '4.4'
130
- - - ! '>='
130
+ - - ">="
131
131
  - !ruby/object:Gem::Version
132
132
  version: 4.4.6
133
133
  - !ruby/object:Gem::Dependency
134
134
  name: autotest-rails-pure
135
135
  requirement: !ruby/object:Gem::Requirement
136
136
  requirements:
137
- - - ~>
137
+ - - "~>"
138
138
  - !ruby/object:Gem::Version
139
139
  version: '4.1'
140
- - - ! '>='
140
+ - - ">="
141
141
  - !ruby/object:Gem::Version
142
142
  version: 4.1.2
143
143
  type: :development
144
144
  prerelease: false
145
145
  version_requirements: !ruby/object:Gem::Requirement
146
146
  requirements:
147
- - - ~>
147
+ - - "~>"
148
148
  - !ruby/object:Gem::Version
149
149
  version: '4.1'
150
- - - ! '>='
150
+ - - ">="
151
151
  - !ruby/object:Gem::Version
152
152
  version: 4.1.2
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: autotest-growl
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - ~>
157
+ - - "~>"
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0.2'
160
- - - ! '>='
160
+ - - ">="
161
161
  - !ruby/object:Gem::Version
162
162
  version: 0.2.16
163
163
  type: :development
164
164
  prerelease: false
165
165
  version_requirements: !ruby/object:Gem::Requirement
166
166
  requirements:
167
- - - ~>
167
+ - - "~>"
168
168
  - !ruby/object:Gem::Version
169
169
  version: '0.2'
170
- - - ! '>='
170
+ - - ">="
171
171
  - !ruby/object:Gem::Version
172
172
  version: 0.2.16
173
173
  - !ruby/object:Gem::Dependency
174
174
  name: autotest-fsevent
175
175
  requirement: !ruby/object:Gem::Requirement
176
176
  requirements:
177
- - - ~>
177
+ - - "~>"
178
178
  - !ruby/object:Gem::Version
179
179
  version: '0.2'
180
- - - ! '>='
180
+ - - ">="
181
181
  - !ruby/object:Gem::Version
182
182
  version: 0.2.11
183
183
  type: :development
184
184
  prerelease: false
185
185
  version_requirements: !ruby/object:Gem::Requirement
186
186
  requirements:
187
- - - ~>
187
+ - - "~>"
188
188
  - !ruby/object:Gem::Version
189
189
  version: '0.2'
190
- - - ! '>='
190
+ - - ">="
191
191
  - !ruby/object:Gem::Version
192
192
  version: 0.2.11
193
193
  description: We make it easy to build relationships using simple videos.
@@ -202,6 +202,10 @@ files:
202
202
  - Rakefile
203
203
  - bombbomb.gemspec
204
204
  - docs/BBWebHook.md
205
+ - docs/Curriculum.md
206
+ - docs/CurriculumApi.md
207
+ - docs/CurriculumUserProgress.md
208
+ - docs/CurriculumWithProgress.md
205
209
  - docs/InlineResponse200.md
206
210
  - docs/InlineResponse200Items.md
207
211
  - docs/JerichoConfiguration.md
@@ -209,12 +213,14 @@ files:
209
213
  - docs/OAuthClient.md
210
214
  - docs/PromptsApi.md
211
215
  - docs/String.md
216
+ - docs/TeamPublicRepresentation.md
212
217
  - docs/TeamsApi.md
213
218
  - docs/UtilitiesApi.md
214
219
  - docs/VideoEmailPrompt.md
215
220
  - docs/WebhooksApi.md
216
221
  - git_push.sh
217
222
  - lib/bombbomb.rb
223
+ - lib/bombbomb/api/curriculum_api.rb
218
224
  - lib/bombbomb/api/prompts_api.rb
219
225
  - lib/bombbomb/api/teams_api.rb
220
226
  - lib/bombbomb/api/utilities_api.rb
@@ -223,14 +229,19 @@ files:
223
229
  - lib/bombbomb/api_error.rb
224
230
  - lib/bombbomb/configuration.rb
225
231
  - lib/bombbomb/models/bb_web_hook.rb
232
+ - lib/bombbomb/models/curriculum.rb
233
+ - lib/bombbomb/models/curriculum_user_progress.rb
234
+ - lib/bombbomb/models/curriculum_with_progress.rb
226
235
  - lib/bombbomb/models/inline_response_200.rb
227
236
  - lib/bombbomb/models/inline_response_200_items.rb
228
237
  - lib/bombbomb/models/jericho_configuration.rb
229
238
  - lib/bombbomb/models/jericho_performance.rb
230
239
  - lib/bombbomb/models/o_auth_client.rb
231
240
  - lib/bombbomb/models/string.rb
241
+ - lib/bombbomb/models/team_public_representation.rb
232
242
  - lib/bombbomb/models/video_email_prompt.rb
233
243
  - lib/bombbomb/version.rb
244
+ - spec/api/curriculum_api_spec.rb
234
245
  - spec/api/prompts_api_spec.rb
235
246
  - spec/api/teams_api_spec.rb
236
247
  - spec/api/utilities_api_spec.rb
@@ -238,12 +249,16 @@ files:
238
249
  - spec/api_client_spec.rb
239
250
  - spec/configuration_spec.rb
240
251
  - spec/models/bb_web_hook_spec.rb
252
+ - spec/models/curriculum_spec.rb
253
+ - spec/models/curriculum_user_progress_spec.rb
254
+ - spec/models/curriculum_with_progress_spec.rb
241
255
  - spec/models/inline_response_200_items_spec.rb
242
256
  - spec/models/inline_response_200_spec.rb
243
257
  - spec/models/jericho_configuration_spec.rb
244
258
  - spec/models/jericho_performance_spec.rb
245
259
  - spec/models/o_auth_client_spec.rb
246
260
  - spec/models/string_spec.rb
261
+ - spec/models/team_public_representation_spec.rb
247
262
  - spec/models/video_email_prompt_spec.rb
248
263
  - spec/spec_helper.rb
249
264
  homepage: http://developer.bombbomb.com
@@ -256,12 +271,12 @@ require_paths:
256
271
  - lib
257
272
  required_ruby_version: !ruby/object:Gem::Requirement
258
273
  requirements:
259
- - - ! '>='
274
+ - - ">="
260
275
  - !ruby/object:Gem::Version
261
276
  version: '0'
262
277
  required_rubygems_version: !ruby/object:Gem::Requirement
263
278
  requirements:
264
- - - ! '>='
279
+ - - ">="
265
280
  - !ruby/object:Gem::Version
266
281
  version: '0'
267
282
  requirements: []
@@ -271,6 +286,7 @@ signing_key:
271
286
  specification_version: 4
272
287
  summary: A ruby wrapper for BombBomb's API
273
288
  test_files:
289
+ - spec/api/curriculum_api_spec.rb
274
290
  - spec/api/prompts_api_spec.rb
275
291
  - spec/api/teams_api_spec.rb
276
292
  - spec/api/utilities_api_spec.rb
@@ -278,11 +294,15 @@ test_files:
278
294
  - spec/api_client_spec.rb
279
295
  - spec/configuration_spec.rb
280
296
  - spec/models/bb_web_hook_spec.rb
297
+ - spec/models/curriculum_spec.rb
298
+ - spec/models/curriculum_user_progress_spec.rb
299
+ - spec/models/curriculum_with_progress_spec.rb
281
300
  - spec/models/inline_response_200_items_spec.rb
282
301
  - spec/models/inline_response_200_spec.rb
283
302
  - spec/models/jericho_configuration_spec.rb
284
303
  - spec/models/jericho_performance_spec.rb
285
304
  - spec/models/o_auth_client_spec.rb
286
305
  - spec/models/string_spec.rb
306
+ - spec/models/team_public_representation_spec.rb
287
307
  - spec/models/video_email_prompt_spec.rb
288
308
  - spec/spec_helper.rb