simplecov-tailwindcss 1.0.1 → 1.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f2142d493fe4e178cbf2a9a2dffa8d2e4431270de13684f2f4e099e818c3ed7
4
- data.tar.gz: f3c2058ee05d60ce64c122fd79a517951013228011722b222b5387de7a7af48c
3
+ metadata.gz: f6df72bd5467a5ca392aaddd0f13dc6bd66d289557bcb5d2ff881bf7c061e723
4
+ data.tar.gz: da29a051976f2516aa4df54867cb940c7e05c098839e4a0eb6072a3660d6b361
5
5
  SHA512:
6
- metadata.gz: 2c9e840e717113e8c727fdd2ae0018e0b1d577754a3a9cecb65f452df81931f0a2d976b9162a71b30dbffc20ae9a7b36f61b70c1028a88e5691602c5402d7549
7
- data.tar.gz: 2180a7bbb293aeb8ac8995b5592dcd5b07f2f9f4db9953c4f4937dba6488870ed17966cbe27b2a86400f85ba839d67a6bb985a191afb37f0be10e52417c0e48a
6
+ metadata.gz: 737229a7a3f97302bd4d1889378f8a926475ff89b3f300ed4e3447da094bfe2d0a5ee622b09bd5b458294d6b9197c7aa4a369471e6cdf45c6949d53c47158fa4
7
+ data.tar.gz: 84e4bc614c8895b5578dc594e12976cb19a6f813e22698706d43253e59e5c9e015cd6cff5002732c3da613aca32c71c387d23b8ed5bd86840cbc80c1f8c6e9a3
@@ -0,0 +1 @@
1
+ github: chiefpansancolt
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## Version [1.0.2](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/1.0.2)
4
+
5
+ ### Bug Fixes
6
+
7
+ - Fix missspelling for Relevant - (#4) - thanks @mdi
8
+
9
+ ## Version [1.0.1](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/1.0.1)
10
+
11
+ ### Bug Fixes
12
+
13
+ - Remove extra require pry
14
+ - fix typo in publish script
15
+
3
16
  ## Version [1.0.0](https://github.com/chiefpansancolt/simplecov-tailwindcss/releases/tag/1.0.0)
4
17
 
5
18
  Initial Release
data/README.md CHANGED
@@ -31,8 +31,8 @@ Add the below to your Gemfile to make Simplecov Material available as a formatte
31
31
  # ./Gemfile
32
32
 
33
33
  group :test do
34
- gem "simplecov"
35
- gem "simplecov-tailwindcss"
34
+ gem "simplecov", require: false
35
+ gem "simplecov-tailwindcss", require: false
36
36
  end
37
37
  ```
38
38
 
@@ -42,12 +42,12 @@ end
42
42
  # ./Gemfile
43
43
 
44
44
  group :test do
45
- gem "simplecov"
45
+ gem "simplecov", require: false
46
46
  end
47
47
 
48
48
  source "https://rubygems.pkg.github.com/chiefpansancolt"
49
49
  group :test do
50
- gem "simplecov-tailwindcss"
50
+ gem "simplecov-tailwindcss", require: false
51
51
  end
52
52
  end
53
53
  ```
@@ -75,7 +75,7 @@ FileUtils.chdir APP_ROOT do # rubocop:disable Metrics/BlockLength
75
75
 
76
76
  puts "== Publishing gem =="
77
77
  built_gem_path = "pkg/simplecov-tailwindcss-#{joined_version}.gem"
78
- github_host = "https://chiefpansancolt:1d992c2d4af14eb6b79ed7ed80af6b709748b508@rubygems.pkg.github.com/chiefpansancolt"
78
+ github_host = "https://rubygems.pkg.github.com/chiefpansancolt"
79
79
 
80
80
  system! "gem push --key github --host #{github_host} #{built_gem_path}"
81
81
  system! "gem push #{built_gem_path}"
@@ -3,7 +3,7 @@
3
3
  module SimpleCov
4
4
  module Formatter
5
5
  class TailwindFormatter
6
- VERSION = "1.0.1"
6
+ VERSION = "1.0.2"
7
7
  end
8
8
  end
9
9
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simplecov-tailwind",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "HTML tailwind Design View for Simplecov formatter",
5
5
  "scripts": {
6
6
  "build": "webpack --config webpack.config.js",
@@ -7,7 +7,7 @@
7
7
 
8
8
  <div class="max-w-7xl mx-auto px-6 pt-4 grid grid-cols-2 gap-5 lg:grid-cols-6 md:grid-cols-3">
9
9
  <%= generate_stat_card('# of Files', format_number(files.length), 'text-gray-900') %>
10
- <%= generate_stat_card('Relevent Lines', format_number(files.lines_of_code), 'text-gray-900') %>
10
+ <%= generate_stat_card('Relevant Lines', format_number(files.lines_of_code), 'text-gray-900') %>
11
11
  <%= generate_stat_card('Lines Covered', format_number(files.covered_lines), 'text-green-500') %>
12
12
  <%= generate_stat_card('Lines Missed', format_number(files.missed_lines), 'text-red-500') %>
13
13
  <%= generate_stat_card('Covered', files.covered_percent.round(2).to_s + '%', coverage_class(files.covered_percent)) %>
@@ -130,4 +130,4 @@
130
130
  </div>
131
131
  </div>
132
132
  </div>
133
- </div>
133
+ </div>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplecov-tailwindcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Pezza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-11 00:00:00.000000000 Z
11
+ date: 2020-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simplecov
@@ -37,6 +37,7 @@ extra_rdoc_files: []
37
37
  files:
38
38
  - ".eslintignore"
39
39
  - ".eslintrc.yml"
40
+ - ".github/FUNDING.yml"
40
41
  - ".github/ISSUE_TEMPLATE/bug_report.md"
41
42
  - ".github/ISSUE_TEMPLATE/feature-request.md"
42
43
  - ".github/ISSUE_TEMPLATE/question.md"