simplecov-material 0.2.0

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 (58) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +286 -0
  3. data/.circleci/setup-rubygems.sh +3 -0
  4. data/.codeclimate.json +86 -0
  5. data/.eslintignore +1 -0
  6. data/.eslintrc.yml +25 -0
  7. data/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  8. data/.github/ISSUE_TEMPLATE/feature-request.md +20 -0
  9. data/.github/ISSUE_TEMPLATE/question.md +10 -0
  10. data/.github/PULL_REQUEST_TEMPLATE.md +32 -0
  11. data/.gitignore +12 -0
  12. data/.rubocop.yml +884 -0
  13. data/.stylelintignore +1 -0
  14. data/.stylelintrc +48 -0
  15. data/CHANGELOG.md +13 -0
  16. data/CODE_OF_CONDUCT.md +74 -0
  17. data/CONTRIBUTING.md +132 -0
  18. data/Gemfile +19 -0
  19. data/LICENSE +21 -0
  20. data/README.md +84 -0
  21. data/Rakefile +12 -0
  22. data/bin/console +12 -0
  23. data/bin/publish +82 -0
  24. data/bin/setup +6 -0
  25. data/dist/app.js +8 -0
  26. data/dist/app.scss +11 -0
  27. data/dist/scripts/dialog.js +8 -0
  28. data/dist/scripts/forms.js +13 -0
  29. data/dist/scripts/list.js +8 -0
  30. data/dist/scripts/navigation.js +14 -0
  31. data/dist/scripts/ripple.js +18 -0
  32. data/dist/scripts/table.js +18 -0
  33. data/dist/scripts/timeago.js +3 -0
  34. data/dist/scripts/topbar.js +5 -0
  35. data/dist/styles/dialog.scss +191 -0
  36. data/dist/styles/main.scss +141 -0
  37. data/dist/styles/table.scss +136 -0
  38. data/lib/simplecov-material.rb +123 -0
  39. data/lib/simplecov-material/version.rb +9 -0
  40. data/package.json +66 -0
  41. data/public/application.css +11083 -0
  42. data/public/application.js +936 -0
  43. data/public/fonts/0509ab09c1b0d2200a4135803c91d6ce.woff2 +0 -0
  44. data/public/fonts/29b882f018fa6fe75fd338aaae6235b8.woff +0 -0
  45. data/public/fonts/96c476804d7a788cc1c05351b287ee41.eot +0 -0
  46. data/public/fonts/da4ea5cdfca6b3baab285741f5ccb59f.ttf +0 -0
  47. data/simplecov-material.gemspec +32 -0
  48. data/test/fixtures/app/controllers/sample_controller.rb +12 -0
  49. data/test/fixtures/app/models/user.rb +12 -0
  50. data/test/fixtures/sample.rb +12 -0
  51. data/test/simplecov-material/simplecov_material_test.rb +40 -0
  52. data/test/test_helper.rb +17 -0
  53. data/views/dialog.erb +51 -0
  54. data/views/group_page.erb +110 -0
  55. data/views/main.erb +90 -0
  56. data/webpack.config.js +81 -0
  57. data/yarn.lock +6973 -0
  58. metadata +127 -0
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simplecov-material
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Christopher Pezza
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-07-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: simplecov
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.16.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.16.0
27
+ description: |-
28
+ HTML Material Design View of Simplecov as a formatter
29
+ that is clean, easy to read.
30
+ email:
31
+ - chiefpansancolt@gmail.com
32
+ executables:
33
+ - console
34
+ - publish
35
+ - setup
36
+ extensions: []
37
+ extra_rdoc_files: []
38
+ files:
39
+ - ".circleci/config.yml"
40
+ - ".circleci/setup-rubygems.sh"
41
+ - ".codeclimate.json"
42
+ - ".eslintignore"
43
+ - ".eslintrc.yml"
44
+ - ".github/ISSUE_TEMPLATE/bug_report.md"
45
+ - ".github/ISSUE_TEMPLATE/feature-request.md"
46
+ - ".github/ISSUE_TEMPLATE/question.md"
47
+ - ".github/PULL_REQUEST_TEMPLATE.md"
48
+ - ".gitignore"
49
+ - ".rubocop.yml"
50
+ - ".stylelintignore"
51
+ - ".stylelintrc"
52
+ - CHANGELOG.md
53
+ - CODE_OF_CONDUCT.md
54
+ - CONTRIBUTING.md
55
+ - Gemfile
56
+ - LICENSE
57
+ - README.md
58
+ - Rakefile
59
+ - bin/console
60
+ - bin/publish
61
+ - bin/setup
62
+ - dist/app.js
63
+ - dist/app.scss
64
+ - dist/scripts/dialog.js
65
+ - dist/scripts/forms.js
66
+ - dist/scripts/list.js
67
+ - dist/scripts/navigation.js
68
+ - dist/scripts/ripple.js
69
+ - dist/scripts/table.js
70
+ - dist/scripts/timeago.js
71
+ - dist/scripts/topbar.js
72
+ - dist/styles/dialog.scss
73
+ - dist/styles/main.scss
74
+ - dist/styles/table.scss
75
+ - lib/simplecov-material.rb
76
+ - lib/simplecov-material/version.rb
77
+ - package.json
78
+ - public/application.css
79
+ - public/application.js
80
+ - public/fonts/0509ab09c1b0d2200a4135803c91d6ce.woff2
81
+ - public/fonts/29b882f018fa6fe75fd338aaae6235b8.woff
82
+ - public/fonts/96c476804d7a788cc1c05351b287ee41.eot
83
+ - public/fonts/da4ea5cdfca6b3baab285741f5ccb59f.ttf
84
+ - simplecov-material.gemspec
85
+ - test/fixtures/app/controllers/sample_controller.rb
86
+ - test/fixtures/app/models/user.rb
87
+ - test/fixtures/sample.rb
88
+ - test/simplecov-material/simplecov_material_test.rb
89
+ - test/test_helper.rb
90
+ - views/dialog.erb
91
+ - views/group_page.erb
92
+ - views/main.erb
93
+ - webpack.config.js
94
+ - yarn.lock
95
+ homepage: https://github.com/chiefpansancolt/simplecov-material
96
+ licenses:
97
+ - MIT
98
+ metadata:
99
+ homepage_uri: https://github.com/chiefpansancolt/simplecov-material
100
+ source_code_uri: https://github.com/chiefpansancolt/simplecov-material
101
+ changelog_uri: https://github.com/chiefpansancolt/simplecov-material/blob/master/CHANGELOG.md
102
+ bug_tracker_uri: https://github.com/chiefpansancolt/simplecov-material/issues
103
+ post_install_message:
104
+ rdoc_options: []
105
+ require_paths:
106
+ - lib
107
+ required_ruby_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: 2.3.0
112
+ required_rubygems_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ requirements: []
118
+ rubygems_version: 3.0.3
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: HTML Material Design View for Simplecov formatter
122
+ test_files:
123
+ - test/fixtures/app/controllers/sample_controller.rb
124
+ - test/fixtures/app/models/user.rb
125
+ - test/fixtures/sample.rb
126
+ - test/simplecov-material/simplecov_material_test.rb
127
+ - test/test_helper.rb