neutralizing 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5877bee116ba7991cf3a5afa9e162afbff72cbdbbbdb9f28aa1179342eff71b0
4
- data.tar.gz: a51d30d0797580fa7294df3ad10a19ef1340611c4f8e19a3fb43232e2169d647
3
+ metadata.gz: a76278af805571c3de88412aff54b31237b37000737ee2ac2b6c7d032c1d7c62
4
+ data.tar.gz: '017848bcf4bbb62d006659c8bf5f163d8a97b2dd373e61a45ceb9dff3a8968aa'
5
5
  SHA512:
6
- metadata.gz: e9abd88b1683e05a743ae677dad9d46cec19dd0575cde59c4ca4c9c7ced9e5273b97b7a85ef59c70691cf6937238a44f1b34f36b8b8d90ea7d462639b6ab8945
7
- data.tar.gz: 11eb3ad5c2d6ae2b91daeaa738d092a47ef1ed338c6863dd0126bb4a7c17aa0b4e2a96d906ab30dabb81986573805f6a8642872550842c9bb7996c497678a453
6
+ metadata.gz: d7eeea8ec38e0f8234333b29a3cab81957490311527c821626f7c9414a78b96705bb383a54b0ec07fcc40d71ccc63526bb33a266fb2617f5f0446623c5c3c581
7
+ data.tar.gz: 24d05d5dc332a8c3137e0e892076dd4f62b9d86569b1813164e20c06249d5a7cd2b6acb28fb502483d80b0acebeb3a80580449ce1a090c61b6d61de6ae508460
data/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## 0.2.1 - October 05, 2025 (2.97 MB)
4
+ - Allow excluding social media links on the home page
5
+
6
+ ## 0.2.0 - October 05, 2025 (2.97 MB)
7
+ - Added listener for color scheme changes (dark and light mode)
8
+
9
+ ## 0.1.1 - April 01, 2025 (2.97 MB)
10
+ - Adjusted attachment sizes (videos and images)
11
+
12
+ ## 0.1.0 - February 01, 2025
13
+ - First version
@@ -1,5 +1,5 @@
1
1
  {% if page.layout != 'default' %}
2
- <footer class="text-center py-4 bg-dark text-light">
2
+ <footer class="text-center py-4 bg-dark text-light border-top">
3
3
  <div class="container my-2">
4
4
  <p>&copy; {{ site.time | date: "%Y" }} - {{ site.name }}</p>
5
5
 
data/_layouts/home.html CHANGED
@@ -69,30 +69,20 @@ layout: default
69
69
  <p>Below is a list of social contacts</p>
70
70
 
71
71
  <ul class="list-unstyled d-flex flex-wrap justify-content-center gap-3 my-5">
72
- <li>
73
- <a class="text-dark bg-light shadow rounded p-2" href="{{ site.social_link.twitter-x }}">
74
- <i class="bi bi-twitter-x me-2"></i>
75
- {{ site.social_username.twitter-x }}
76
- </a>
77
- </li>
78
- <li>
79
- <a class="text-dark bg-light shadow rounded p-2" href="{{ site.social_link.linkedin }}">
80
- <i class="bi bi-linkedin me-2"></i>
81
- {{ site.social_username.linkedin }}
82
- </a>
83
- </li>
84
- <li>
85
- <a class="text-dark bg-light shadow rounded p-2" href="{{ site.social_link.github }}">
86
- <i class="bi bi-github me-2"></i>
87
- {{ site.social_username.github}}
88
- </a>
89
- </li>
90
- <li>
91
- <a class="text-dark bg-light shadow rounded p-2" href="mailto:{{ site.social_link.email }}" target="_blank">
92
- <i class="bi bi-envelope me-2"></i>
93
- {{ site.social_username.email }}
94
- </a>
95
- </li>
72
+ {% assign socials = "twitter-x,linkedin,github,email" | split: "," %}
73
+
74
+ {% for key in socials %}
75
+ {% assign link = site.social_link[key] %}
76
+
77
+ {% if link != "" %}
78
+ <li>
79
+ <a class="text-dark bg-light shadow rounded p-2" href="{% if key == 'email' %}mailto:{{ link }}{% else %}{{ link }}{% endif %}" {% if key == "email" %}target="_blank"{% endif %}>
80
+ <i class="bi bi-{{ key | replace: "_x","" }} me-2"></i>
81
+ {{ site.social_username[key] }}
82
+ </a>
83
+ </li>
84
+ {% endif %}
85
+ {% endfor %}
96
86
  </ul>
97
87
  </div>
98
88
  </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.2.0"
7
+ spec.version = "0.2.1"
8
8
  spec.authors = ["Nicolas"]
9
9
  spec.email = ["nicolasalmeida321@gmail.com"]
10
10
 
@@ -14,9 +14,9 @@ Gem::Specification.new do |spec|
14
14
 
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
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"
17
+ spec.metadata["changelog_uri"] = "https://github.com/nicollinoxx/neutralizing/blob/master/CHANGELOG.md"
18
18
 
19
- spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_data|_layouts|_includes|_sass|LICENSE|README|_config\.yml|)!i) }
19
+ spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_data|_layouts|_includes|_sass|LICENSE|README|_config\.yml|)!i) }
20
20
 
21
21
  spec.add_runtime_dependency "jekyll", "~> 4.3"
22
22
  spec.add_runtime_dependency "jekyll-feed", "~> 0.15"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neutralizing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-09-21 00:00:00.000000000 Z
10
+ date: 2026-01-11 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: jekyll
@@ -38,7 +37,6 @@ dependencies:
38
37
  - - "~>"
39
38
  - !ruby/object:Gem::Version
40
39
  version: '0.15'
41
- description:
42
40
  email:
43
41
  - nicolasalmeida321@gmail.com
44
42
  executables: []
@@ -47,6 +45,7 @@ extra_rdoc_files: []
47
45
  files:
48
46
  - ".gitignore"
49
47
  - 404.html
48
+ - CHANGELOG.md
50
49
  - Gemfile
51
50
  - LICENSE.txt
52
51
  - README.md
@@ -77,8 +76,7 @@ licenses:
77
76
  metadata:
78
77
  homepage_uri: https://github.com/nicollinoxx/neutralizing
79
78
  source_code_uri: https://github.com/nicollinoxx/neutralizing
80
- changelog_uri: https://github.com/nicollinoxx/neutralizing/blob/main/CHANGELOG.md
81
- post_install_message:
79
+ changelog_uri: https://github.com/nicollinoxx/neutralizing/blob/master/CHANGELOG.md
82
80
  rdoc_options: []
83
81
  require_paths:
84
82
  - lib
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
91
  - !ruby/object:Gem::Version
94
92
  version: '0'
95
93
  requirements: []
96
- rubygems_version: 3.2.3
97
- signing_key:
94
+ rubygems_version: 3.6.2
98
95
  specification_version: 4
99
96
  summary: '"A bootstrap powered Jekyll theme for portfolio websites."'
100
97
  test_files: []