sapience 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +15 -19
  3. data/.travis.yml +13 -2
  4. data/Rakefile +1 -0
  5. data/docker-compose.yml +21 -6
  6. data/lib/sapience/appender/stream.rb +1 -1
  7. data/lib/sapience/extensions/action_cable/tagged_logger_proxy.rb +6 -8
  8. data/lib/sapience/extensions/active_model_serializers/logging.rb +11 -13
  9. data/lib/sapience/extensions/grape/middleware/logging.rb +14 -16
  10. data/lib/sapience/rails.rb +3 -3
  11. data/lib/sapience/version.rb +1 -1
  12. data/lib/sapience.rb +0 -1
  13. data/lib/tasks/coverage.rake +68 -0
  14. data/{test_app → test_apps/grape}/.gitignore +0 -0
  15. data/test_apps/grape/.simplecov +25 -0
  16. data/test_apps/grape/Gemfile +30 -0
  17. data/test_apps/grape/Rakefile.rb +8 -0
  18. data/test_apps/grape/config.ru +5 -0
  19. data/test_apps/grape/lib/ping/api.rb +16 -0
  20. data/test_apps/grape/lib/ping.rb +3 -0
  21. data/test_apps/grape/spec/lib/ping/api_spec.rb +41 -0
  22. data/test_apps/grape/spec/spec_helper.rb +25 -0
  23. data/test_apps/rails/.gitignore +38 -0
  24. data/{test_app → test_apps/rails}/.ruby-version +0 -0
  25. data/test_apps/rails/.simplecov +25 -0
  26. data/{test_app → test_apps/rails}/Gemfile +5 -5
  27. data/{test_app → test_apps/rails}/README.md +0 -0
  28. data/{test_app → test_apps/rails}/Rakefile +0 -0
  29. data/{test_app → test_apps/rails}/app/assets/config/manifest.js +0 -0
  30. data/{test_app → test_apps/rails}/app/assets/images/.keep +0 -0
  31. data/{test_app → test_apps/rails}/app/assets/javascripts/posts.js +0 -0
  32. data/{test_app → test_apps/rails}/app/assets/stylesheets/application.css +0 -0
  33. data/{test_app → test_apps/rails}/app/assets/stylesheets/posts.css +0 -0
  34. data/{test_app → test_apps/rails}/app/assets/stylesheets/scaffold.css +0 -0
  35. data/{test_app → test_apps/rails}/app/channels/application_cable/channel.rb +0 -0
  36. data/{test_app → test_apps/rails}/app/channels/application_cable/connection.rb +0 -0
  37. data/{test_app → test_apps/rails}/app/controllers/application_controller.rb +0 -0
  38. data/{test_app → test_apps/rails}/app/controllers/concerns/.keep +0 -0
  39. data/{test_app → test_apps/rails}/app/controllers/posts_controller.rb +0 -0
  40. data/{test_app → test_apps/rails}/app/helpers/application_helper.rb +0 -0
  41. data/{test_app → test_apps/rails}/app/helpers/posts_helper.rb +0 -0
  42. data/{test_app → test_apps/rails}/app/jobs/application_job.rb +0 -0
  43. data/{test_app → test_apps/rails}/app/mailers/application_mailer.rb +0 -0
  44. data/{test_app → test_apps/rails}/app/models/application_record.rb +0 -0
  45. data/{test_app → test_apps/rails}/app/models/concerns/.keep +0 -0
  46. data/{test_app → test_apps/rails}/app/models/post.rb +0 -0
  47. data/{test_app → test_apps/rails}/app/models/user.rb +0 -0
  48. data/{test_app → test_apps/rails}/app/views/layouts/application.html.erb +0 -0
  49. data/{test_app → test_apps/rails}/app/views/layouts/mailer.html.erb +0 -0
  50. data/{test_app → test_apps/rails}/app/views/layouts/mailer.text.erb +0 -0
  51. data/{test_app → test_apps/rails}/app/views/posts/_form.html.slim +0 -0
  52. data/{test_app → test_apps/rails}/app/views/posts/edit.html.slim +0 -0
  53. data/{test_app → test_apps/rails}/app/views/posts/index.html.slim +0 -0
  54. data/{test_app → test_apps/rails}/app/views/posts/new.html.slim +0 -0
  55. data/{test_app → test_apps/rails}/app/views/posts/show.html.slim +0 -0
  56. data/{test_app → test_apps/rails}/app/workers/test_worker.rb +1 -1
  57. data/{test_app → test_apps/rails}/bin/bundle +0 -0
  58. data/{test_app → test_apps/rails}/bin/rails +0 -0
  59. data/{test_app → test_apps/rails}/bin/rake +0 -0
  60. data/{test_app → test_apps/rails}/bin/setup +0 -0
  61. data/{test_app → test_apps/rails}/bin/sneakers +0 -0
  62. data/{test_app → test_apps/rails}/bin/update +0 -0
  63. data/{test_app → test_apps/rails}/config/application.rb +0 -0
  64. data/{test_app → test_apps/rails}/config/boot.rb +0 -0
  65. data/{test_app → test_apps/rails}/config/cable.yml +0 -0
  66. data/{test_app → test_apps/rails}/config/database.yml +0 -0
  67. data/{test_app → test_apps/rails}/config/environment.rb +0 -0
  68. data/{test_app → test_apps/rails}/config/environments/development.rb +0 -0
  69. data/{test_app → test_apps/rails}/config/environments/production.rb +0 -0
  70. data/{test_app → test_apps/rails}/config/environments/test.rb +0 -0
  71. data/{test_app → test_apps/rails}/config/initializers/application_controller_renderer.rb +0 -0
  72. data/{test_app → test_apps/rails}/config/initializers/backtrace_silencers.rb +0 -0
  73. data/{test_app → test_apps/rails}/config/initializers/cookies_serializer.rb +0 -0
  74. data/{test_app → test_apps/rails}/config/initializers/filter_parameter_logging.rb +0 -0
  75. data/{test_app → test_apps/rails}/config/initializers/inflections.rb +0 -0
  76. data/{test_app → test_apps/rails}/config/initializers/mime_types.rb +0 -0
  77. data/{test_app → test_apps/rails}/config/initializers/new_framework_defaults.rb +0 -0
  78. data/{test_app → test_apps/rails}/config/initializers/session_store.rb +0 -0
  79. data/{test_app → test_apps/rails}/config/initializers/sneakers.rb +0 -0
  80. data/{test_app → test_apps/rails}/config/initializers/wrap_parameters.rb +0 -0
  81. data/{test_app → test_apps/rails}/config/locales/en.yml +0 -0
  82. data/{test_app → test_apps/rails}/config/puma.rb +0 -0
  83. data/{test_app → test_apps/rails}/config/routes.rb +0 -0
  84. data/{test_app → test_apps/rails}/config/sapience_example.yml +0 -0
  85. data/{test_app → test_apps/rails}/config/secrets.yml +0 -0
  86. data/{test_app → test_apps/rails}/config.ru +0 -0
  87. data/{test_app → test_apps/rails}/db/migrate/20160812092236_create_users.rb +0 -0
  88. data/{test_app → test_apps/rails}/db/migrate/20160902141445_create_posts.rb +0 -0
  89. data/{test_app → test_apps/rails}/db/schema.rb +0 -0
  90. data/{test_app → test_apps/rails}/db/seeds.rb +0 -0
  91. data/{test_app → test_apps/rails}/lib/assets/.keep +0 -0
  92. data/{test_app → test_apps/rails}/lib/external_sneaker.rb +0 -0
  93. data/{test_app → test_apps/rails}/lib/tasks/.keep +0 -0
  94. data/{test_app → test_apps/rails}/public/404.html +0 -0
  95. data/{test_app → test_apps/rails}/public/422.html +0 -0
  96. data/{test_app → test_apps/rails}/public/500.html +0 -0
  97. data/{test_app → test_apps/rails}/public/apple-touch-icon-precomposed.png +0 -0
  98. data/{test_app → test_apps/rails}/public/apple-touch-icon.png +0 -0
  99. data/{test_app → test_apps/rails}/public/favicon.ico +0 -0
  100. data/{test_app → test_apps/rails}/public/robots.txt +0 -0
  101. data/{test_app → test_apps/rails}/spec/controllers/posts_controller_spec.rb +0 -0
  102. data/{test_app → test_apps/rails}/spec/factories/posts.rb +0 -0
  103. data/{test_app → test_apps/rails}/spec/factories/users.rb +0 -0
  104. data/{test_app → test_apps/rails}/spec/fixtures/sapience.yml +0 -0
  105. data/{test_app → test_apps/rails}/spec/helpers/posts_helper_spec.rb +0 -0
  106. data/{test_app → test_apps/rails}/spec/integration/sapience_spec.rb +0 -0
  107. data/{test_app → test_apps/rails}/spec/models/post_spec.rb +0 -0
  108. data/{test_app → test_apps/rails}/spec/models/user_spec.rb +0 -0
  109. data/{test_app → test_apps/rails}/spec/rails_helper.rb +4 -2
  110. data/{test_app → test_apps/rails}/spec/requests/posts_spec.rb +0 -0
  111. data/{test_app → test_apps/rails}/spec/routing/posts_routing_spec.rb +0 -0
  112. data/{test_app → test_apps/rails}/spec/spec_helper.rb +0 -0
  113. data/{test_app → test_apps/rails}/spec/views/posts/edit.html.slim_spec.rb +0 -0
  114. data/{test_app → test_apps/rails}/spec/views/posts/index.html.slim_spec.rb +0 -0
  115. data/{test_app → test_apps/rails}/spec/views/posts/new.html.slim_spec.rb +0 -0
  116. data/{test_app → test_apps/rails}/spec/views/posts/show.html.slim_spec.rb +0 -0
  117. data/{test_app → test_apps/rails}/spec/workers/test_worker_spec.rb +0 -0
  118. data/{test_app/log → test_apps/rails/vendor/assets/stylesheets}/.keep +0 -0
  119. metadata +108 -102
  120. data/lib/sapience/configuration/grape.rb +0 -9
  121. data/test_app/.rspec +0 -2
  122. data/test_app/tmp/.keep +0 -0
  123. data/test_app/vendor/assets/stylesheets/.keep +0 -0
  124. data/test_app.simplecov +0 -19
File without changes
File without changes
@@ -1,4 +1,4 @@
1
- require_relative "../../../spec/support/file_helper"
1
+ require_relative "../../../../spec/support/file_helper"
2
2
 
3
3
  class TestWorker
4
4
  QUEUE_NAME = :sneakers_queue
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,13 +1,15 @@
1
+ require "simplecov"
2
+
1
3
  # This file is copied to spec/ when you run 'rails generate rspec:install'
2
4
  ENV["RAILS_ENV"] ||= "test"
3
5
  require File.expand_path("../../config/environment", __FILE__)
4
6
  # Prevent database truncation if the environment is production
5
7
  abort("The Rails environment is running in production mode!") if Rails.env.production?
6
8
  require "spec_helper"
9
+ require "sapience/rails"
7
10
  require "rspec/rails"
8
11
  require "rspec/its"
9
- require "rspec/wait"
10
- require_relative "../../spec/support/file_helper"
12
+ require_relative "../../../spec/support/file_helper"
11
13
 
12
14
  Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
13
15
 
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sapience
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-09-09 00:00:00.000000000 Z
12
+ date: 2016-09-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -286,7 +286,6 @@ files:
286
286
  - lib/sapience/concerns/compatibility.rb
287
287
  - lib/sapience/config_loader.rb
288
288
  - lib/sapience/configuration.rb
289
- - lib/sapience/configuration/grape.rb
290
289
  - lib/sapience/core_ext/hash.rb
291
290
  - lib/sapience/core_ext/symbol.rb
292
291
  - lib/sapience/core_ext/thread.rb
@@ -318,106 +317,113 @@ files:
318
317
  - lib/sapience/sneakers.rb
319
318
  - lib/sapience/subscriber.rb
320
319
  - lib/sapience/version.rb
320
+ - lib/tasks/coverage.rake
321
321
  - sapience.gemspec
322
- - test_app.simplecov
323
- - test_app/.gitignore
324
- - test_app/.rspec
325
- - test_app/.ruby-version
326
- - test_app/Gemfile
327
- - test_app/README.md
328
- - test_app/Rakefile
329
- - test_app/app/assets/config/manifest.js
330
- - test_app/app/assets/images/.keep
331
- - test_app/app/assets/javascripts/posts.js
332
- - test_app/app/assets/stylesheets/application.css
333
- - test_app/app/assets/stylesheets/posts.css
334
- - test_app/app/assets/stylesheets/scaffold.css
335
- - test_app/app/channels/application_cable/channel.rb
336
- - test_app/app/channels/application_cable/connection.rb
337
- - test_app/app/controllers/application_controller.rb
338
- - test_app/app/controllers/concerns/.keep
339
- - test_app/app/controllers/posts_controller.rb
340
- - test_app/app/helpers/application_helper.rb
341
- - test_app/app/helpers/posts_helper.rb
342
- - test_app/app/jobs/application_job.rb
343
- - test_app/app/mailers/application_mailer.rb
344
- - test_app/app/models/application_record.rb
345
- - test_app/app/models/concerns/.keep
346
- - test_app/app/models/post.rb
347
- - test_app/app/models/user.rb
348
- - test_app/app/views/layouts/application.html.erb
349
- - test_app/app/views/layouts/mailer.html.erb
350
- - test_app/app/views/layouts/mailer.text.erb
351
- - test_app/app/views/posts/_form.html.slim
352
- - test_app/app/views/posts/edit.html.slim
353
- - test_app/app/views/posts/index.html.slim
354
- - test_app/app/views/posts/new.html.slim
355
- - test_app/app/views/posts/show.html.slim
356
- - test_app/app/workers/test_worker.rb
357
- - test_app/bin/bundle
358
- - test_app/bin/rails
359
- - test_app/bin/rake
360
- - test_app/bin/setup
361
- - test_app/bin/sneakers
362
- - test_app/bin/update
363
- - test_app/config.ru
364
- - test_app/config/application.rb
365
- - test_app/config/boot.rb
366
- - test_app/config/cable.yml
367
- - test_app/config/database.yml
368
- - test_app/config/environment.rb
369
- - test_app/config/environments/development.rb
370
- - test_app/config/environments/production.rb
371
- - test_app/config/environments/test.rb
372
- - test_app/config/initializers/application_controller_renderer.rb
373
- - test_app/config/initializers/backtrace_silencers.rb
374
- - test_app/config/initializers/cookies_serializer.rb
375
- - test_app/config/initializers/filter_parameter_logging.rb
376
- - test_app/config/initializers/inflections.rb
377
- - test_app/config/initializers/mime_types.rb
378
- - test_app/config/initializers/new_framework_defaults.rb
379
- - test_app/config/initializers/session_store.rb
380
- - test_app/config/initializers/sneakers.rb
381
- - test_app/config/initializers/wrap_parameters.rb
382
- - test_app/config/locales/en.yml
383
- - test_app/config/puma.rb
384
- - test_app/config/routes.rb
385
- - test_app/config/sapience_example.yml
386
- - test_app/config/secrets.yml
387
- - test_app/db/migrate/20160812092236_create_users.rb
388
- - test_app/db/migrate/20160902141445_create_posts.rb
389
- - test_app/db/schema.rb
390
- - test_app/db/seeds.rb
391
- - test_app/lib/assets/.keep
392
- - test_app/lib/external_sneaker.rb
393
- - test_app/lib/tasks/.keep
394
- - test_app/log/.keep
395
- - test_app/public/404.html
396
- - test_app/public/422.html
397
- - test_app/public/500.html
398
- - test_app/public/apple-touch-icon-precomposed.png
399
- - test_app/public/apple-touch-icon.png
400
- - test_app/public/favicon.ico
401
- - test_app/public/robots.txt
402
- - test_app/spec/controllers/posts_controller_spec.rb
403
- - test_app/spec/factories/posts.rb
404
- - test_app/spec/factories/users.rb
405
- - test_app/spec/fixtures/sapience.yml
406
- - test_app/spec/helpers/posts_helper_spec.rb
407
- - test_app/spec/integration/sapience_spec.rb
408
- - test_app/spec/models/post_spec.rb
409
- - test_app/spec/models/user_spec.rb
410
- - test_app/spec/rails_helper.rb
411
- - test_app/spec/requests/posts_spec.rb
412
- - test_app/spec/routing/posts_routing_spec.rb
413
- - test_app/spec/spec_helper.rb
414
- - test_app/spec/views/posts/edit.html.slim_spec.rb
415
- - test_app/spec/views/posts/index.html.slim_spec.rb
416
- - test_app/spec/views/posts/new.html.slim_spec.rb
417
- - test_app/spec/views/posts/show.html.slim_spec.rb
418
- - test_app/spec/workers/test_worker_spec.rb
419
- - test_app/tmp/.keep
420
- - test_app/vendor/assets/stylesheets/.keep
322
+ - test_apps/grape/.gitignore
323
+ - test_apps/grape/.simplecov
324
+ - test_apps/grape/Gemfile
325
+ - test_apps/grape/Rakefile.rb
326
+ - test_apps/grape/config.ru
327
+ - test_apps/grape/lib/ping.rb
328
+ - test_apps/grape/lib/ping/api.rb
329
+ - test_apps/grape/spec/lib/ping/api_spec.rb
330
+ - test_apps/grape/spec/spec_helper.rb
331
+ - test_apps/rails/.gitignore
332
+ - test_apps/rails/.ruby-version
333
+ - test_apps/rails/.simplecov
334
+ - test_apps/rails/Gemfile
335
+ - test_apps/rails/README.md
336
+ - test_apps/rails/Rakefile
337
+ - test_apps/rails/app/assets/config/manifest.js
338
+ - test_apps/rails/app/assets/images/.keep
339
+ - test_apps/rails/app/assets/javascripts/posts.js
340
+ - test_apps/rails/app/assets/stylesheets/application.css
341
+ - test_apps/rails/app/assets/stylesheets/posts.css
342
+ - test_apps/rails/app/assets/stylesheets/scaffold.css
343
+ - test_apps/rails/app/channels/application_cable/channel.rb
344
+ - test_apps/rails/app/channels/application_cable/connection.rb
345
+ - test_apps/rails/app/controllers/application_controller.rb
346
+ - test_apps/rails/app/controllers/concerns/.keep
347
+ - test_apps/rails/app/controllers/posts_controller.rb
348
+ - test_apps/rails/app/helpers/application_helper.rb
349
+ - test_apps/rails/app/helpers/posts_helper.rb
350
+ - test_apps/rails/app/jobs/application_job.rb
351
+ - test_apps/rails/app/mailers/application_mailer.rb
352
+ - test_apps/rails/app/models/application_record.rb
353
+ - test_apps/rails/app/models/concerns/.keep
354
+ - test_apps/rails/app/models/post.rb
355
+ - test_apps/rails/app/models/user.rb
356
+ - test_apps/rails/app/views/layouts/application.html.erb
357
+ - test_apps/rails/app/views/layouts/mailer.html.erb
358
+ - test_apps/rails/app/views/layouts/mailer.text.erb
359
+ - test_apps/rails/app/views/posts/_form.html.slim
360
+ - test_apps/rails/app/views/posts/edit.html.slim
361
+ - test_apps/rails/app/views/posts/index.html.slim
362
+ - test_apps/rails/app/views/posts/new.html.slim
363
+ - test_apps/rails/app/views/posts/show.html.slim
364
+ - test_apps/rails/app/workers/test_worker.rb
365
+ - test_apps/rails/bin/bundle
366
+ - test_apps/rails/bin/rails
367
+ - test_apps/rails/bin/rake
368
+ - test_apps/rails/bin/setup
369
+ - test_apps/rails/bin/sneakers
370
+ - test_apps/rails/bin/update
371
+ - test_apps/rails/config.ru
372
+ - test_apps/rails/config/application.rb
373
+ - test_apps/rails/config/boot.rb
374
+ - test_apps/rails/config/cable.yml
375
+ - test_apps/rails/config/database.yml
376
+ - test_apps/rails/config/environment.rb
377
+ - test_apps/rails/config/environments/development.rb
378
+ - test_apps/rails/config/environments/production.rb
379
+ - test_apps/rails/config/environments/test.rb
380
+ - test_apps/rails/config/initializers/application_controller_renderer.rb
381
+ - test_apps/rails/config/initializers/backtrace_silencers.rb
382
+ - test_apps/rails/config/initializers/cookies_serializer.rb
383
+ - test_apps/rails/config/initializers/filter_parameter_logging.rb
384
+ - test_apps/rails/config/initializers/inflections.rb
385
+ - test_apps/rails/config/initializers/mime_types.rb
386
+ - test_apps/rails/config/initializers/new_framework_defaults.rb
387
+ - test_apps/rails/config/initializers/session_store.rb
388
+ - test_apps/rails/config/initializers/sneakers.rb
389
+ - test_apps/rails/config/initializers/wrap_parameters.rb
390
+ - test_apps/rails/config/locales/en.yml
391
+ - test_apps/rails/config/puma.rb
392
+ - test_apps/rails/config/routes.rb
393
+ - test_apps/rails/config/sapience_example.yml
394
+ - test_apps/rails/config/secrets.yml
395
+ - test_apps/rails/db/migrate/20160812092236_create_users.rb
396
+ - test_apps/rails/db/migrate/20160902141445_create_posts.rb
397
+ - test_apps/rails/db/schema.rb
398
+ - test_apps/rails/db/seeds.rb
399
+ - test_apps/rails/lib/assets/.keep
400
+ - test_apps/rails/lib/external_sneaker.rb
401
+ - test_apps/rails/lib/tasks/.keep
402
+ - test_apps/rails/public/404.html
403
+ - test_apps/rails/public/422.html
404
+ - test_apps/rails/public/500.html
405
+ - test_apps/rails/public/apple-touch-icon-precomposed.png
406
+ - test_apps/rails/public/apple-touch-icon.png
407
+ - test_apps/rails/public/favicon.ico
408
+ - test_apps/rails/public/robots.txt
409
+ - test_apps/rails/spec/controllers/posts_controller_spec.rb
410
+ - test_apps/rails/spec/factories/posts.rb
411
+ - test_apps/rails/spec/factories/users.rb
412
+ - test_apps/rails/spec/fixtures/sapience.yml
413
+ - test_apps/rails/spec/helpers/posts_helper_spec.rb
414
+ - test_apps/rails/spec/integration/sapience_spec.rb
415
+ - test_apps/rails/spec/models/post_spec.rb
416
+ - test_apps/rails/spec/models/user_spec.rb
417
+ - test_apps/rails/spec/rails_helper.rb
418
+ - test_apps/rails/spec/requests/posts_spec.rb
419
+ - test_apps/rails/spec/routing/posts_routing_spec.rb
420
+ - test_apps/rails/spec/spec_helper.rb
421
+ - test_apps/rails/spec/views/posts/edit.html.slim_spec.rb
422
+ - test_apps/rails/spec/views/posts/index.html.slim_spec.rb
423
+ - test_apps/rails/spec/views/posts/new.html.slim_spec.rb
424
+ - test_apps/rails/spec/views/posts/show.html.slim_spec.rb
425
+ - test_apps/rails/spec/workers/test_worker_spec.rb
426
+ - test_apps/rails/vendor/assets/stylesheets/.keep
421
427
  homepage: https://github.com/reevoo/sapience
422
428
  licenses:
423
429
  - MIT
@@ -1,9 +0,0 @@
1
- module Sapience
2
- class Configuration
3
- class Grape
4
- def self.configure
5
- Grape::API.send(:include, Sapience::Loggable)
6
- end
7
- end
8
- end
9
- end
data/test_app/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --require spec_helper
data/test_app/tmp/.keep DELETED
File without changes
File without changes
data/test_app.simplecov DELETED
@@ -1,19 +0,0 @@
1
- require "simplecov-json"
2
- require "codeclimate-test-reporter"
3
- require "coveralls"
4
-
5
- CodeClimate::TestReporter.start
6
- SimpleCov.maximum_coverage_drop 1
7
-
8
- SimpleCov.formatters = [
9
- SimpleCov::Formatter::HTMLFormatter,
10
- SimpleCov::Formatter::JSONFormatter,
11
- CodeClimate::TestReporter::Formatter,
12
- Coveralls::SimpleCov::Formatter,
13
- ]
14
-
15
- SimpleCov.start do
16
- add_filter "/spec/"
17
- add_filter "/bin/"
18
- add_filter "/gemfiles/"
19
- end