nanoc-tidy.rb 0.2.0 → 0.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 +4 -4
- data/README.md +0 -6
- data/lib/nanoc/tidy/version.rb +1 -1
- data/nanoc-tidy.rb.gemspec +1 -1
- metadata +2 -6
- data/.bundle/config +0 -2
- data/.github/workflows/tests.yml +0 -24
- data/.gitignore +0 -2
- data/.projectile +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ef9ec4aa2d04e43d4caed4ba3e2eecf7c835d81156e5a2025c0f2990470754c
|
|
4
|
+
data.tar.gz: d028d3cc3aaa355854fa3f1a234f85cba915c1b08b8e9d7b8f4e5865a293bd6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dfaf3bc792c4c7d079408132087c20ba0aac896692764c79efb2b110aae09a11566fb9af1010df197cfd25af6a43e16f7b7de0823ab6db7132278dc3e05f9d8
|
|
7
|
+
data.tar.gz: f94ce085f463bb1229f1d3e5b88b35d5c3a5e141d3ec5f5e20ce12d20e60e34da4e78751d51beb40b73a213e5a42a808f471b5239efb1d952f6f7d7e3ccd5df8
|
data/README.md
CHANGED
|
@@ -55,12 +55,6 @@ and
|
|
|
55
55
|
[GitLab](https://gitlab.com/0x1eef/nanoc-tidy.rb)
|
|
56
56
|
are available as sources.
|
|
57
57
|
|
|
58
|
-
**Gemfile**
|
|
59
|
-
|
|
60
|
-
```ruby
|
|
61
|
-
gem "nanoc-tidy.rb", github: "0x1eef/nanoc-tidy.rb"
|
|
62
|
-
```
|
|
63
|
-
|
|
64
58
|
## License
|
|
65
59
|
|
|
66
60
|
[BSD Zero Clause](https://choosealicense.com/licenses/0bsd/).
|
data/lib/nanoc/tidy/version.rb
CHANGED
data/nanoc-tidy.rb.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
|
|
|
8
8
|
gem.homepage = "https://github.com/0x1eef/nanoc-tidy.rb#readme"
|
|
9
9
|
gem.version = Nanoc::Tidy::VERSION
|
|
10
10
|
gem.licenses = ["0BSD"]
|
|
11
|
-
gem.files = `git ls-files`.split($/)
|
|
11
|
+
gem.files = `git ls-files`.split($/).reject { _1.start_with?(".") }
|
|
12
12
|
gem.require_paths = ["lib"]
|
|
13
13
|
gem.summary = "nanoc-tidy.rb integrates tidy-html5 into nanoc."
|
|
14
14
|
gem.description = gem.summary
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nanoc-tidy.rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- '0x1eef'
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-12-
|
|
11
|
+
date: 2023-12-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: yard
|
|
@@ -115,10 +115,6 @@ executables: []
|
|
|
115
115
|
extensions: []
|
|
116
116
|
extra_rdoc_files: []
|
|
117
117
|
files:
|
|
118
|
-
- ".bundle/config"
|
|
119
|
-
- ".github/workflows/tests.yml"
|
|
120
|
-
- ".gitignore"
|
|
121
|
-
- ".projectile"
|
|
122
118
|
- Gemfile
|
|
123
119
|
- LICENSE
|
|
124
120
|
- README.md
|
data/.bundle/config
DELETED
data/.github/workflows/tests.yml
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
name: nanoc-tidy.rb
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [ main ]
|
|
6
|
-
pull_request:
|
|
7
|
-
branches: [ main ]
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
specs:
|
|
11
|
-
strategy:
|
|
12
|
-
fail-fast: false
|
|
13
|
-
matrix:
|
|
14
|
-
os: [ubuntu-latest]
|
|
15
|
-
ruby: [3.1, 3.2]
|
|
16
|
-
runs-on: ${{ matrix.os }}
|
|
17
|
-
steps:
|
|
18
|
-
- uses: actions/checkout@v2
|
|
19
|
-
- uses: ruby/setup-ruby@v1
|
|
20
|
-
with:
|
|
21
|
-
ruby-version: ${{ matrix.ruby }}
|
|
22
|
-
- run: sudo apt-get install tidy
|
|
23
|
-
- run: bundle install
|
|
24
|
-
- run: rake
|
data/.gitignore
DELETED