web47core 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/{lib/app → app}/assets/stylesheets/status.sass +0 -0
  3. data/{lib/app → app}/controllers/status_controller.rb +0 -0
  4. data/{lib/app → app}/views/status/index.html.haml +0 -0
  5. metadata +6 -79
  6. data/.circleci/config.yml +0 -58
  7. data/.gitignore +0 -70
  8. data/.rubocop.yml +0 -33
  9. data/Gemfile +0 -5
  10. data/Gemfile.lock +0 -318
  11. data/Rakefile +0 -7
  12. data/bin/cron_server +0 -4
  13. data/test/controllers/status_controller_test.rb +0 -158
  14. data/test/factories/account_factories.rb +0 -9
  15. data/test/factories/notification_factories.rb +0 -14
  16. data/test/fixtures/mongoid.yml +0 -8
  17. data/test/fixtures/redis/host.yml +0 -5
  18. data/test/fixtures/redis/options.yml +0 -8
  19. data/test/fixtures/redis/sentinel.yml +0 -8
  20. data/test/fixtures/redis/url.yml +0 -2
  21. data/test/jobs/cron/server_test.rb +0 -160
  22. data/test/jobs/cron/switchboard_sync_configuration_test.rb +0 -64
  23. data/test/jobs/cron/trim_cron_servers_test.rb +0 -28
  24. data/test/jobs/cron/trim_failed_delayed_jobs_test.rb +0 -71
  25. data/test/models/concerns/app47_logger_test.rb +0 -88
  26. data/test/models/concerns/cdn_url_test.rb +0 -54
  27. data/test/models/concerns/email_able_test.rb +0 -145
  28. data/test/models/concerns/search_able_test.rb +0 -80
  29. data/test/models/concerns/standard_model_test.rb +0 -154
  30. data/test/models/concerns/system_configuration_test.rb +0 -212
  31. data/test/models/concerns/time_zone_able_test.rb +0 -77
  32. data/test/models/email_notification_test.rb +0 -297
  33. data/test/models/job_cron_tab_test.rb +0 -25
  34. data/test/models/notification_test.rb +0 -127
  35. data/test/models/redis_configuration_test.rb +0 -86
  36. data/test/models/slack_notification_test.rb +0 -91
  37. data/test/models/sms_notification_test.rb +0 -69
  38. data/test/models/smtp_configuration_test.rb +0 -66
  39. data/test/models/web47core_test.rb +0 -18
  40. data/test/notification_test_helper.rb +0 -146
  41. data/test/rails_setup.rb +0 -61
  42. data/test/shoulda_macros/mongoid.rb +0 -70
  43. data/test/test_helper.rb +0 -93
  44. data/test/test_models_helper.rb +0 -14
  45. data/web47core.gemspec +0 -58
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00d13c9db9f30f83dae32f68e402d1916193c73628c430694834b47c4893475e
4
- data.tar.gz: 2d91396fa1a980ed68347d801fbf9c3149669823d44b23ffd730e7344cb4ff0d
3
+ metadata.gz: 6071604627f92a2ddfc83e8c0ee809795745cb6a1287fd86b34fa381952c1e42
4
+ data.tar.gz: 7f1d7def8f3b7f62195d865e013a2cf9b7309c282f82449b66471d9788ab1603
5
5
  SHA512:
6
- metadata.gz: 1f1049f2332a61a551a403b8a20d2f6fb8e697305cb7b13dedff4ee28cfb0f3cb2bcadd000c0b9a3ee9bd5a397052930f659d67bd5567263773c01992e8b2302
7
- data.tar.gz: cafe990fbe4618b188f62ea4da75309342abd2155b47ef1983ce1a63eb6600735ea624682d7c0757857f087d589ee23df12e49177620d080561be24fc047c320
6
+ metadata.gz: 7d66f0068c885e842c803bdccfd0ac907a322d135c742e971c37736f50a6634df78b59bf6b8a979eb84304276d03da8210ab9686fab6b9d353394cea981dcbd5
7
+ data.tar.gz: f1025f5f76a4aa4febfe6d0a001c17038353db13a94b660a98e24b6dcebf856b81811a2e760f4a14550ab789f757e804cb31d52a3ee08ab1ea0bb02c4ad23665
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web47core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Schroeder
@@ -505,23 +505,16 @@ dependencies:
505
505
  description: Common core components used in all our web products.
506
506
  email:
507
507
  - chris@app47.com
508
- executables:
509
- - cron_server
508
+ executables: []
510
509
  extensions: []
511
510
  extra_rdoc_files: []
512
511
  files:
513
- - ".circleci/config.yml"
514
- - ".gitignore"
515
- - ".rubocop.yml"
516
- - Gemfile
517
- - Gemfile.lock
518
512
  - LICENSE
519
513
  - README.md
520
- - Rakefile
521
- - bin/cron_server
514
+ - app/assets/stylesheets/status.sass
515
+ - app/controllers/status_controller.rb
516
+ - app/views/status/index.html.haml
522
517
  - config/locales/en.yml
523
- - lib/app/assets/stylesheets/status.sass
524
- - lib/app/controllers/status_controller.rb
525
518
  - lib/app/jobs/application_job.rb
526
519
  - lib/app/jobs/cron/command.rb
527
520
  - lib/app/jobs/cron/job.rb
@@ -553,45 +546,11 @@ files:
553
546
  - lib/app/models/sms_notification.rb
554
547
  - lib/app/models/smtp_configuration.rb
555
548
  - lib/app/models/template.rb
556
- - lib/app/views/status/index.html.haml
557
549
  - lib/templates/email/notification_failure.liquid
558
550
  - lib/templates/email/notification_failure.subject.liquid
559
551
  - lib/templates/slack/error_message.liquid
560
552
  - lib/templates/slack/failed_delayed_job.liquid
561
553
  - lib/web47core.rb
562
- - test/controllers/status_controller_test.rb
563
- - test/factories/account_factories.rb
564
- - test/factories/notification_factories.rb
565
- - test/fixtures/mongoid.yml
566
- - test/fixtures/redis/host.yml
567
- - test/fixtures/redis/options.yml
568
- - test/fixtures/redis/sentinel.yml
569
- - test/fixtures/redis/url.yml
570
- - test/jobs/cron/server_test.rb
571
- - test/jobs/cron/switchboard_sync_configuration_test.rb
572
- - test/jobs/cron/trim_cron_servers_test.rb
573
- - test/jobs/cron/trim_failed_delayed_jobs_test.rb
574
- - test/models/concerns/app47_logger_test.rb
575
- - test/models/concerns/cdn_url_test.rb
576
- - test/models/concerns/email_able_test.rb
577
- - test/models/concerns/search_able_test.rb
578
- - test/models/concerns/standard_model_test.rb
579
- - test/models/concerns/system_configuration_test.rb
580
- - test/models/concerns/time_zone_able_test.rb
581
- - test/models/email_notification_test.rb
582
- - test/models/job_cron_tab_test.rb
583
- - test/models/notification_test.rb
584
- - test/models/redis_configuration_test.rb
585
- - test/models/slack_notification_test.rb
586
- - test/models/sms_notification_test.rb
587
- - test/models/smtp_configuration_test.rb
588
- - test/models/web47core_test.rb
589
- - test/notification_test_helper.rb
590
- - test/rails_setup.rb
591
- - test/shoulda_macros/mongoid.rb
592
- - test/test_helper.rb
593
- - test/test_models_helper.rb
594
- - web47core.gemspec
595
554
  homepage: https://app47.com
596
555
  licenses:
597
556
  - MIT
@@ -615,36 +574,4 @@ rubygems_version: 3.0.8
615
574
  signing_key:
616
575
  specification_version: 4
617
576
  summary: App47 Web Core Library.
618
- test_files:
619
- - test/controllers/status_controller_test.rb
620
- - test/factories/account_factories.rb
621
- - test/factories/notification_factories.rb
622
- - test/fixtures/mongoid.yml
623
- - test/fixtures/redis/host.yml
624
- - test/fixtures/redis/options.yml
625
- - test/fixtures/redis/sentinel.yml
626
- - test/fixtures/redis/url.yml
627
- - test/jobs/cron/server_test.rb
628
- - test/jobs/cron/switchboard_sync_configuration_test.rb
629
- - test/jobs/cron/trim_cron_servers_test.rb
630
- - test/jobs/cron/trim_failed_delayed_jobs_test.rb
631
- - test/models/concerns/app47_logger_test.rb
632
- - test/models/concerns/cdn_url_test.rb
633
- - test/models/concerns/email_able_test.rb
634
- - test/models/concerns/search_able_test.rb
635
- - test/models/concerns/standard_model_test.rb
636
- - test/models/concerns/system_configuration_test.rb
637
- - test/models/concerns/time_zone_able_test.rb
638
- - test/models/email_notification_test.rb
639
- - test/models/job_cron_tab_test.rb
640
- - test/models/notification_test.rb
641
- - test/models/redis_configuration_test.rb
642
- - test/models/slack_notification_test.rb
643
- - test/models/sms_notification_test.rb
644
- - test/models/smtp_configuration_test.rb
645
- - test/models/web47core_test.rb
646
- - test/notification_test_helper.rb
647
- - test/rails_setup.rb
648
- - test/shoulda_macros/mongoid.rb
649
- - test/test_helper.rb
650
- - test/test_models_helper.rb
577
+ test_files: []
@@ -1,58 +0,0 @@
1
- #
2
- # All-in-one
3
- #
4
- # This test configuration runs all tests in a single job.
5
- #
6
- version: 2.1
7
-
8
- commands:
9
- setup_environment:
10
- description: Run the tests for a given directory in the test folder
11
- steps:
12
- - checkout
13
- - restore_cache:
14
- keys:
15
- - app47-webcore-gem-cache-v2-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
16
- - run:
17
- name: Version information
18
- shell: /bin/bash -l
19
- command: |
20
- mongod --version;
21
- redis-server --version;
22
- ruby --version;
23
- gem --version;
24
- bundle --version;
25
- - run:
26
- name: Setup environment
27
- shell: /bin/bash -l
28
- command: |
29
- mkdir -p ./log;
30
- bundle install --path=vendor --jobs=4 --retry=3;
31
- redis-server --daemonize yes;
32
- mongod -smallfiles -nojournal --fork --logpath /var/log/mongodb.log;
33
- - save_cache:
34
- key: app47-webcore-gem-cache-v2-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
35
- paths:
36
- - vendor
37
-
38
- executors:
39
- webcore_executor:
40
- docker:
41
- - image: app47/bionic:latest
42
- environment:
43
- - ENV: CI
44
- - REDIS_URL: redis://localhost:6379
45
- - MONGO_URL: localhost:27017
46
- - RACK_ENV: test
47
- - RAILS_ENV: test
48
- - COVERAGE: 1
49
-
50
- jobs:
51
- build:
52
- executor: webcore_executor
53
- steps:
54
- - setup_environment
55
- - run:
56
- name: Run tests
57
- shell: /bin/bash -l
58
- command: bundle exec rake test
data/.gitignore DELETED
@@ -1,70 +0,0 @@
1
- *.rbc
2
- *.gem
3
- capybara-*.html
4
- .rspec
5
- /db/*.sqlite3
6
- /db/*.sqlite3-journal
7
- /db/*.sqlite3-[0-9]*
8
- /public/system
9
- /coverage/
10
- /vendor/
11
- /.idea/
12
- /spec/tmp
13
- *.orig
14
- rerun.txt
15
- pickle-email-*.html
16
-
17
- # Ignore all logfiles and tempfiles.
18
- /log/*
19
- /tmp/*
20
- !/log/.keep
21
- !/tmp/.keep
22
-
23
- # TODO Comment out this rule if you are OK with secrets being uploaded to the repo
24
- config/initializers/secret_token.rb
25
- config/master.key
26
-
27
- # Only include if you have production secrets in this file, which is no longer a Rails default
28
- # config/secrets.yml
29
-
30
- # dotenv
31
- # TODO Comment out this rule if environment variables can be committed
32
- .env
33
-
34
- ## Environment normalization:
35
- /.bundle
36
- /vendor/bundle
37
-
38
- # these should all be checked in to normalize the environment:
39
- # Gemfile.lock, .ruby-version, .ruby-gemset
40
-
41
- # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
42
- .rvmrc
43
-
44
- # if using bower-rails ignore default bower_components path bower.json files
45
- /vendor/assets/bower_components
46
- *.bowerrc
47
- bower.json
48
-
49
- # Ignore pow environment settings
50
- .powenv
51
-
52
- # Ignore Byebug command history file.
53
- .byebug_history
54
-
55
- # Ignore node_modules
56
- node_modules/
57
-
58
- # Ignore precompiled javascript packs
59
- /public/packs
60
- /public/packs-test
61
- /public/assets
62
-
63
- # Ignore yarn files
64
- /yarn-error.log
65
- yarn-debug.log*
66
- .yarn-integrity
67
-
68
- # Ignore uploaded files in development
69
- /storage/*
70
- !/storage/.keep
@@ -1,33 +0,0 @@
1
- AllCops:
2
- Exclude:
3
- - 'test/**/*'
4
- - 'vendor/**/*'
5
- - 'bin/**/*'
6
-
7
- Metrics/LineLength:
8
- Max: 120
9
-
10
- Metrics/ClassLength:
11
- Max: 600
12
-
13
- Metrics/ModuleLength:
14
- Max: 600
15
-
16
- Metrics/MethodLength:
17
- Max: 40
18
-
19
- Metrics/AbcSize:
20
- Max: 40
21
-
22
- Metrics/CyclomaticComplexity:
23
- Max: 15
24
-
25
- Metrics/PerceivedComplexity:
26
- Max: 15
27
-
28
- Style/FrozenStringLiteralComment:
29
- Enabled: false
30
-
31
- Naming/RescuedExceptionsVariableName:
32
- PreferredName: error
33
-
data/Gemfile DELETED
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
- ruby '2.4.1'
3
-
4
- # Specify your gem's dependencies
5
- gemspec
@@ -1,318 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- web47core (0.1.4)
5
- activesupport (~> 5.0)
6
- aws-sdk-autoscaling
7
- daemons
8
- delayed_job_mongoid (~> 2.3)
9
- email_format
10
- haml
11
- jwt
12
- liquid
13
- materialize-sass
14
- mongoid (> 6, < 7)
15
- rails (>= 4.2, < 5.3)
16
- redis (~> 4.1)
17
- redis-rails (> 5, < 6)
18
- rest-client (>= 0, <= 2.1.0)
19
- twilio-ruby (>= 3.0, <= 4.13)
20
- tzinfo
21
-
22
- GEM
23
- remote: https://rubygems.org/
24
- specs:
25
- actioncable (5.2.4.2)
26
- actionpack (= 5.2.4.2)
27
- nio4r (~> 2.0)
28
- websocket-driver (>= 0.6.1)
29
- actionmailer (5.2.4.2)
30
- actionpack (= 5.2.4.2)
31
- actionview (= 5.2.4.2)
32
- activejob (= 5.2.4.2)
33
- mail (~> 2.5, >= 2.5.4)
34
- rails-dom-testing (~> 2.0)
35
- actionpack (5.2.4.2)
36
- actionview (= 5.2.4.2)
37
- activesupport (= 5.2.4.2)
38
- rack (~> 2.0, >= 2.0.8)
39
- rack-test (>= 0.6.3)
40
- rails-dom-testing (~> 2.0)
41
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
42
- actionview (5.2.4.2)
43
- activesupport (= 5.2.4.2)
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.2.4.2)
49
- activesupport (= 5.2.4.2)
50
- globalid (>= 0.3.6)
51
- activemodel (5.2.4.2)
52
- activesupport (= 5.2.4.2)
53
- activerecord (5.2.4.2)
54
- activemodel (= 5.2.4.2)
55
- activesupport (= 5.2.4.2)
56
- arel (>= 9.0)
57
- activestorage (5.2.4.2)
58
- actionpack (= 5.2.4.2)
59
- activerecord (= 5.2.4.2)
60
- marcel (~> 0.3.1)
61
- activesupport (5.2.4.2)
62
- concurrent-ruby (~> 1.0, >= 1.0.2)
63
- i18n (>= 0.7, < 2)
64
- minitest (~> 5.1)
65
- tzinfo (~> 1.1)
66
- addressable (2.7.0)
67
- public_suffix (>= 2.0.2, < 5.0)
68
- ansi (1.5.0)
69
- arel (9.0.0)
70
- autoprefixer-rails (9.7.5)
71
- execjs
72
- aws-eventstream (1.0.3)
73
- aws-partitions (1.290.0)
74
- aws-sdk-autoscaling (1.33.0)
75
- aws-sdk-core (~> 3, >= 3.71.0)
76
- aws-sigv4 (~> 1.1)
77
- aws-sdk-core (3.92.0)
78
- aws-eventstream (~> 1.0, >= 1.0.2)
79
- aws-partitions (~> 1, >= 1.239.0)
80
- aws-sigv4 (~> 1.1)
81
- jmespath (~> 1.0)
82
- aws-sigv4 (1.1.1)
83
- aws-eventstream (~> 1.0, >= 1.0.2)
84
- bson (4.8.2)
85
- builder (3.2.4)
86
- capybara (2.18.0)
87
- addressable
88
- mini_mime (>= 0.1.3)
89
- nokogiri (>= 1.3.3)
90
- rack (>= 1.0.0)
91
- rack-test (>= 0.5.4)
92
- xpath (>= 2.0, < 4.0)
93
- codacy-coverage (2.1.5)
94
- simplecov
95
- concurrent-ruby (1.1.6)
96
- crack (0.4.3)
97
- safe_yaml (~> 1.0.0)
98
- crass (1.0.6)
99
- daemons (1.3.1)
100
- database_cleaner (1.8.3)
101
- delayed_job (4.1.8)
102
- activesupport (>= 3.0, < 6.1)
103
- delayed_job_mongoid (2.3.1)
104
- delayed_job (>= 3.0, < 5)
105
- mongoid (>= 3.0, < 8)
106
- mongoid-compatibility (>= 0.4.0)
107
- docile (1.3.2)
108
- domain_name (0.5.20190701)
109
- unf (>= 0.0.5, < 1.0.0)
110
- email_format (1.0.0)
111
- activemodel
112
- email_regex
113
- email_regex (0.0.1)
114
- erubi (1.9.0)
115
- execjs (2.7.0)
116
- factory_bot (5.1.2)
117
- activesupport (>= 4.2.0)
118
- factory_bot_rails (5.1.1)
119
- factory_bot (~> 5.1.0)
120
- railties (>= 4.2.0)
121
- ffi (1.12.2)
122
- globalid (0.4.2)
123
- activesupport (>= 4.2.0)
124
- haml (5.1.2)
125
- temple (>= 0.8.0)
126
- tilt
127
- hashdiff (1.0.1)
128
- http-accept (1.7.0)
129
- http-cookie (1.0.3)
130
- domain_name (~> 0.5)
131
- i18n (1.8.2)
132
- concurrent-ruby (~> 1.0)
133
- jmespath (1.4.0)
134
- json (2.3.0)
135
- jwt (1.5.6)
136
- liquid (4.0.3)
137
- listen (3.2.1)
138
- rb-fsevent (~> 0.10, >= 0.10.3)
139
- rb-inotify (~> 0.9, >= 0.9.10)
140
- loofah (2.4.0)
141
- crass (~> 1.0.2)
142
- nokogiri (>= 1.5.9)
143
- mail (2.7.1)
144
- mini_mime (>= 0.1.1)
145
- marcel (0.3.3)
146
- mimemagic (~> 0.3.2)
147
- materialize-sass (1.0.0)
148
- autoprefixer-rails (>= 6.0.3)
149
- method_source (1.0.0)
150
- mime-types (3.3.1)
151
- mime-types-data (~> 3.2015)
152
- mime-types-data (3.2019.1009)
153
- mimemagic (0.3.4)
154
- mini_mime (1.0.2)
155
- mini_portile2 (2.4.0)
156
- minitest (5.10.3)
157
- minitest-capybara (0.9.0)
158
- capybara
159
- minitest (~> 5.0)
160
- rake
161
- minitest-metadata (0.6.0)
162
- minitest (>= 4.7, < 6.0)
163
- minitest-rails (3.0.0)
164
- minitest (~> 5.8)
165
- railties (~> 5.0)
166
- minitest-rails-capybara (3.0.1)
167
- capybara (~> 2.7)
168
- minitest-capybara (~> 0.8)
169
- minitest-metadata (~> 0.6)
170
- minitest-rails (~> 3.0)
171
- minitest-reporters (1.4.2)
172
- ansi
173
- builder
174
- minitest (>= 5.0)
175
- ruby-progressbar
176
- mocha (1.11.2)
177
- mongo (2.11.4)
178
- bson (>= 4.4.2, < 5.0.0)
179
- mongoid (6.4.4)
180
- activemodel (>= 5.1, < 6.0.0)
181
- mongo (>= 2.5.1, < 3.0.0)
182
- mongoid-compatibility (0.5.1)
183
- activesupport
184
- mongoid (>= 2.0)
185
- multi_json (1.14.1)
186
- netrc (0.11.0)
187
- nio4r (2.5.2)
188
- nokogiri (1.10.9)
189
- mini_portile2 (~> 2.4.0)
190
- power_assert (1.1.7)
191
- public_suffix (4.0.3)
192
- rack (2.2.2)
193
- rack-test (1.1.0)
194
- rack (>= 1.0, < 3)
195
- rails (5.2.4.2)
196
- actioncable (= 5.2.4.2)
197
- actionmailer (= 5.2.4.2)
198
- actionpack (= 5.2.4.2)
199
- actionview (= 5.2.4.2)
200
- activejob (= 5.2.4.2)
201
- activemodel (= 5.2.4.2)
202
- activerecord (= 5.2.4.2)
203
- activestorage (= 5.2.4.2)
204
- activesupport (= 5.2.4.2)
205
- bundler (>= 1.3.0)
206
- railties (= 5.2.4.2)
207
- sprockets-rails (>= 2.0.0)
208
- rails-dom-testing (2.0.3)
209
- activesupport (>= 4.2.0)
210
- nokogiri (>= 1.6)
211
- rails-html-sanitizer (1.3.0)
212
- loofah (~> 2.3)
213
- railties (5.2.4.2)
214
- actionpack (= 5.2.4.2)
215
- activesupport (= 5.2.4.2)
216
- method_source
217
- rake (>= 0.8.7)
218
- thor (>= 0.19.0, < 2.0)
219
- rake (13.0.1)
220
- rb-fsevent (0.10.3)
221
- rb-inotify (0.10.1)
222
- ffi (~> 1.0)
223
- redis (4.1.3)
224
- redis-actionpack (5.2.0)
225
- actionpack (>= 5, < 7)
226
- redis-rack (>= 2.1.0, < 3)
227
- redis-store (>= 1.1.0, < 2)
228
- redis-activesupport (5.2.0)
229
- activesupport (>= 3, < 7)
230
- redis-store (>= 1.3, < 2)
231
- redis-rack (2.1.2)
232
- rack (>= 2.0.8, < 3)
233
- redis-store (>= 1.2, < 2)
234
- redis-rails (5.0.2)
235
- redis-actionpack (>= 5.0, < 6)
236
- redis-activesupport (>= 5.0, < 6)
237
- redis-store (>= 1.2, < 2)
238
- redis-store (1.8.2)
239
- redis (>= 4, < 5)
240
- rest-client (2.1.0)
241
- http-accept (>= 1.7.0, < 2.0)
242
- http-cookie (>= 1.0.2, < 2.0)
243
- mime-types (>= 1.16, < 4.0)
244
- netrc (~> 0.8)
245
- ruby-progressbar (1.10.1)
246
- safe_yaml (1.0.5)
247
- shoulda (3.6.0)
248
- shoulda-context (~> 1.0, >= 1.0.1)
249
- shoulda-matchers (~> 3.0)
250
- shoulda-context (1.2.2)
251
- shoulda-matchers (3.1.3)
252
- activesupport (>= 4.0.0)
253
- simplecov (0.16.1)
254
- docile (~> 1.1)
255
- json (>= 1.8, < 3)
256
- simplecov-html (~> 0.10.0)
257
- simplecov-html (0.10.2)
258
- sprockets (3.7.2)
259
- concurrent-ruby (~> 1.0)
260
- rack (> 1, < 3)
261
- sprockets-rails (3.2.1)
262
- actionpack (>= 4.0)
263
- activesupport (>= 4.0)
264
- sprockets (>= 3.0.0)
265
- temple (0.8.2)
266
- test-unit (3.3.5)
267
- power_assert
268
- thor (1.0.1)
269
- thread_safe (0.3.6)
270
- tilt (2.0.10)
271
- twilio-ruby (4.13.0)
272
- builder (>= 2.1.2)
273
- jwt (~> 1.0)
274
- multi_json (>= 1.3.0)
275
- tzinfo (1.2.6)
276
- thread_safe (~> 0.1)
277
- unf (0.1.4)
278
- unf_ext
279
- unf_ext (0.0.7.6)
280
- vcr (5.1.0)
281
- webmock (3.8.3)
282
- addressable (>= 2.3.6)
283
- crack (>= 0.3.2)
284
- hashdiff (>= 0.4.0, < 2.0.0)
285
- websocket-driver (0.7.1)
286
- websocket-extensions (>= 0.1.0)
287
- websocket-extensions (0.1.4)
288
- xpath (3.2.0)
289
- nokogiri (~> 1.8)
290
-
291
- PLATFORMS
292
- ruby
293
-
294
- DEPENDENCIES
295
- bundler
296
- codacy-coverage (~> 2.1.0)
297
- database_cleaner
298
- factory_bot
299
- factory_bot_rails
300
- listen
301
- minitest (= 5.10.3)
302
- minitest-rails (= 3.0.0)
303
- minitest-rails-capybara (= 3.0.1)
304
- minitest-reporters
305
- mocha
306
- shoulda (= 3.6.0)
307
- shoulda-matchers
308
- simplecov (= 0.16.1)
309
- test-unit
310
- vcr
311
- web47core!
312
- webmock
313
-
314
- RUBY VERSION
315
- ruby 2.4.1p111
316
-
317
- BUNDLED WITH
318
- 1.17.3