neutralizing 0.1.0 → 0.1.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 -9
- data/_layouts/post.html +4 -1
- data/neutralizing.gemspec +5 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 131bae03e15d773eaae06cae7e9c33089b0b2eb5d0cec5a9bdbe43781d9596f2
|
4
|
+
data.tar.gz: 3c9c7ac1006eac1eb88f142b98dac1e557a8783992809e9da8d7dceb57f60480
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08b28b2f906f5059643ef7016f33ab08889bda8c3e3a16eb0ffa34766b8570fb2ddf1da2da5e675c615ce9fd41b067e70d696acf208a3bb2a16358919b9ebc0e'
|
7
|
+
data.tar.gz: 1291cc973d9b7413e17a8f0711608b5c518250821310930c7b00f094c4d04110639818273ed11a8467f087f4ff73938f06279d32d9901904016b16c1575a5641
|
data/README.md
CHANGED
@@ -74,15 +74,6 @@ visit: https://github.com/nicollinoxx/neutralizing/tree/master/_posts to see exa
|
|
74
74
|
|
75
75
|
Bug reports and pull requests are welcome on GitHub at https://github.com/nicollinoxx/neutralizing. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
|
76
76
|
|
77
|
-
## Development
|
78
|
-
|
79
|
-
To set up your environment to develop this theme, run `bundle install`.
|
80
|
-
|
81
|
-
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
82
|
-
|
83
|
-
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
84
|
-
To add a custom directory to your theme-gem, please edit the regexp in `neutralizing.gemspec` accordingly.
|
85
|
-
|
86
77
|
## License
|
87
78
|
|
88
79
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_layouts/post.html
CHANGED
@@ -32,6 +32,9 @@ layout: default
|
|
32
32
|
{% endif %}
|
33
33
|
|
34
34
|
<div class="mb-5">
|
35
|
-
|
35
|
+
{{ content
|
36
|
+
| replace: "<video", "<video class='img-fluid mx-auto d-block bg-dark'"
|
37
|
+
| replace: "<img", "<img class='img-fluid mx-auto d-block'"
|
38
|
+
}}
|
36
39
|
</div>
|
37
40
|
</div>
|
data/neutralizing.gemspec
CHANGED
@@ -4,7 +4,7 @@ Gem::Specification.new do |spec|
|
|
4
4
|
spec.required_ruby_version = ">= 3.0.0"
|
5
5
|
|
6
6
|
spec.name = "neutralizing"
|
7
|
-
spec.version = "0.1.
|
7
|
+
spec.version = "0.1.1"
|
8
8
|
spec.authors = ["Nicolas"]
|
9
9
|
spec.email = ["nicolasalmeida321@gmail.com"]
|
10
10
|
|
@@ -12,6 +12,10 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.homepage = "https://github.com/nicollinoxx/neutralizing"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = "https://github.com/nicollinoxx/neutralizing"
|
17
|
+
spec.metadata["changelog_uri"] = "https://github.com/nicollinoxx/neutralizing/blob/main/CHANGELOG.md"
|
18
|
+
|
15
19
|
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_data|_layouts|_includes|_sass|LICENSE|README|_config\.yml|)!i) }
|
16
20
|
|
17
21
|
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neutralizing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nicolas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -73,7 +73,10 @@ files:
|
|
73
73
|
homepage: https://github.com/nicollinoxx/neutralizing
|
74
74
|
licenses:
|
75
75
|
- MIT
|
76
|
-
metadata:
|
76
|
+
metadata:
|
77
|
+
homepage_uri: https://github.com/nicollinoxx/neutralizing
|
78
|
+
source_code_uri: https://github.com/nicollinoxx/neutralizing
|
79
|
+
changelog_uri: https://github.com/nicollinoxx/neutralizing/blob/main/CHANGELOG.md
|
77
80
|
post_install_message:
|
78
81
|
rdoc_options: []
|
79
82
|
require_paths:
|