govuk_tech_docs 6.2.0 → 6.2.1

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: 5b63d996648a19346b3271b19f10e30b6e81338617ee36fe348ec7060ecc7635
4
- data.tar.gz: 790a7e766bf65ab9ab5a7b45dbff30bfa85d03761275938f8517808869cb940c
3
+ metadata.gz: 62edf3302d34a29ee8024355838612a76a1a28bf427875b03d3ac2c29d1f841b
4
+ data.tar.gz: 1d1e7af654e7b0b6cba51267c5022f57c71cfa0dafa8d41102fee162c7bb8714
5
5
  SHA512:
6
- metadata.gz: 31c6547961ed29eb9e56b4c2f761257900d18429e4fd7c73fa151a7fc21e7751c78a8d1c9ccf5c57a4d8f13e6f471384e8900307179b9f82115491f4349d3275
7
- data.tar.gz: c0f8a093d245c3ba9ea5c9933eb4eb5f38d1a90fbc4a7dd74ef6b83531b2b3b51d773d7457ad760ab3f214a9b38b1734be839f73709a29decc33ed2a53da2083
6
+ metadata.gz: b5787bc5a26543f7408f041d801eb8025b47d6d414ac4f0154ccb539b30bfefec8ad39fcfe9106331c47d0c8296c9a22f94ca89d44b1e83de710ec1727d4c3ce
7
+ data.tar.gz: f2ac22d61f066089ef8984f2a7bf2c0f183742e37c92cf7db28d91f2d0ae2f7f1bc311edc9ca5db90055635cf9a24c0cd629cbdf39d2b84d60438483e5255df9
@@ -14,11 +14,6 @@ updates:
14
14
  time: "06:00"
15
15
  commit-message:
16
16
  prefix: chore
17
- # TODO - add labels
18
- # labels:
19
- # - "dependencies"
20
- # - "ruby"
21
- # - "automated-pr"
22
17
  open-pull-requests-limit: 5
23
18
 
24
19
  # 2. Update GitHub Actions (keeps your CI workflows secure)
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 6.2.1
2
+
3
+ - [Fix comments in code blocks being hard to read](https://github.com/alphagov/tech-docs-gem/pull/477)
4
+
1
5
  ## 6.2.0
2
6
 
3
7
  - Remove support for Ruby 3.2, by updating `required_ruby_version` to `>= 3.3.0`
@@ -1 +1 @@
1
- 3.2.6
1
+ 3.3.11
@@ -17,6 +17,7 @@ An example of a table with a `code` element within it.
17
17
  An example of a code block with a long line length
18
18
 
19
19
  ```ruby
20
+ # Example comment to check syntax highlighting for comments
20
21
  RSpec.describe ContentItem do
21
22
  subject { described_class.new(base_path) }
22
23
  let(:base_path) { "/search/news-and-communications" }
@@ -45,9 +45,7 @@ Gem::Specification.new do |spec|
45
45
  spec.add_dependency "middleman-compass"
46
46
  spec.add_dependency "middleman-livereload"
47
47
  spec.add_dependency "middleman-search-gds"
48
- =begin
49
- middleman-sprockets is very old and out of date. V4.1.0 has a breaking change. Will look to replace with gem "dartsass-sprockets" or uses sass in the package.json
50
- =end
48
+ # middleman-sprockets is very old and out of date. V4.1.0 has a breaking change. Will look to replace with gem "dartsass-sprockets" or uses sass in the package.json
51
49
  spec.add_dependency "middleman-sprockets", "4.0.0"
52
50
  spec.add_dependency "middleman-syntax"
53
51
  spec.add_dependency "mutex_m" # TODO: remove once activesupport declares this itself.
@@ -4,9 +4,7 @@
4
4
  $code-00: scale-color(govuk-colour("black", $variant: "tint-95"), $lightness:50%); /* Default Background */
5
5
  $code-01: #f5f5f5; /* Lighter Background (Unused) */
6
6
  $code-02: #bfc1c3; /* Selection Background */
7
- // we should be using govuk-functional-colour but it outputs a variable, but darken only takes numbers
8
- // instead, we use the colour returned by govuk-functional-colour(secondary-text)
9
- $code-03: darken( govuk-colour("black", $variant: "tint-95"), 2%);; /* Comments, Invisibles, Line Highlighting */
7
+ $code-03: govuk-functional-colour(secondary-text); /* Comments, Invisibles, Line Highlighting */
10
8
  $code-04: #e8e8e8; /* Dark Foreground (Unused) */
11
9
  $code-05: govuk-functional-colour(text); /* Default Foreground, Caret, Delimiters, Operators */
12
10
  $code-06: govuk-functional-colour(body-background); /* Light Foreground (Unused) */
@@ -1,3 +1,3 @@
1
1
  module GovukTechDocs
2
- VERSION = "6.2.0".freeze
2
+ VERSION = "6.2.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: govuk_tech_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.0
4
+ version: 6.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Government Digital Service