cybersynth-theme 0.1.0 → 0.1.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: d5edf8fdde61544786b418b45413fd2b7229593f2b10fa9e244f37c070f8aaa7
4
- data.tar.gz: 9b04692a1ed65d4036cabb95770a1fee58f89bb0de6c009094f14ffb94cc6a48
3
+ metadata.gz: 33ab9b605ddc0f39923693066941277006fd024d5cb08d317535e967692e9c47
4
+ data.tar.gz: 363c0a7b146ce7150014081a1638a83e2008424dd31a88a3abe69d4b55cc5c7e
5
5
  SHA512:
6
- metadata.gz: 956d9a216feae7b98a524823f01a3aaf94a25115f7503e1fd63a0ec97ed278b797d6a49ca126bfd038882cf18e1511bea3e480f209a92f754258c8fb2949433b
7
- data.tar.gz: 9da8064ba70656548230e741778ca616cb9ae03438b6b8a9c3cc2af698980fbbb3f96f255ec363ed9b6e858dcc86c64fd1a7a724df9d6e360afe7ef625aec24b
6
+ metadata.gz: 948f6b7c82d0ec87932df386c7cea32058d913b482e19682ccdcc72e2964fbc2edb013ae2736bca6027377ee7ac66819de745b9d550e8ee65158470bcdd9c0a3
7
+ data.tar.gz: d33c3058b07055e572c61cf0cf374559c9e5d1e26cc1b26655e9ef472b3e8626fc076a9b1793bc2e41df8711ceec89ffe6f5244d806e77ff3cb6e39462a0a974
data/CHANGELOG.md ADDED
@@ -0,0 +1,36 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.1.2] - 2024-03-17
11
+
12
+ ### Added
13
+
14
+ - CHANGELOG.
15
+ - Rubygems Metadata.
16
+
17
+ ### Fixed
18
+
19
+ - Fixes title position.
20
+
21
+ ## [0.1.1] - 2024-03-17
22
+
23
+ ### Changed
24
+
25
+ - Points to remote repository so it works on GitHub.
26
+
27
+ ## [0.1.0] - 2024-03-16
28
+
29
+ ### Added
30
+
31
+ - First implementation of project.
32
+
33
+ [unreleased]: https://github.com/ziinahzoor/cybersynth-theme/compare/v0.1.2...main
34
+ [0.1.2]: https://github.com/ziinahzoor/cybersynth-theme/compare/v0.1.1...v0.1.2
35
+ [0.1.1]: https://github.com/ziinahzoor/cybersynth-theme/compare/v0.1.0...v0.1.1
36
+ [0.1.0]: https://github.com/ziinahzoor/cybersynth-theme/releases/tag/v0.1.0
data/README.md CHANGED
@@ -1,50 +1,39 @@
1
- # cybersynth-theme
1
+ # Cybersynth Jekyll Theme
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
-
5
- To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
-
7
- TODO: Delete this and the text above, and describe your gem
3
+ Cybersynth is a cyberpunk Jekyll theme with header navigation for GitHub pages. Check out the [example](https://ziinahzoor.github.io/cybersynth-theme/) website.
8
4
 
9
5
  ## Installation
10
6
 
11
- Add this line to your Jekyll site's `Gemfile`:
12
-
13
- ```ruby
14
- gem "cybersynth-theme"
15
- ```
16
-
17
- And add this line to your Jekyll site's `_config.yml`:
7
+ It's simple to use the Cybersynth on your GitHub pages site:
18
8
 
9
+ 1. Add the code bellow to your `_config.yml` file:
10
+
19
11
  ```yaml
20
- theme: cybersynth-theme
12
+ remote_theme: https://github.com/ziinahzoor/cybersynth-theme
13
+ plugins:
14
+ - jekyll-remote-theme
21
15
  ```
22
16
 
23
- And then execute:
17
+ 2. To preview it locally, add the following code to your `Gemfile`:
24
18
 
25
- $ bundle
19
+ ```ruby
20
+ gem "github-pages", group: :jekyll_plugins
21
+ ```
26
22
 
27
- Or install it yourself as:
23
+ 3. And then execute:
28
24
 
29
- $ gem install cybersynth-theme
25
+ ```
26
+ $ bundle install
27
+ ```
30
28
 
31
- ## Usage
29
+ ## Customizing
32
30
 
33
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
31
+ Just follow the [Jekyll documentation](https://jekyllrb.com/docs/themes/).
34
32
 
35
33
  ## Contributing
36
34
 
37
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cybersynth-theme. 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.
38
-
39
- ## Development
40
-
41
- To set up your environment to develop this theme, run `bundle install`.
42
-
43
- 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.
44
-
45
- When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
46
- To add a custom directory to your theme-gem, please edit the regexp in `cybersynth-theme.gemspec` accordingly.
35
+ Bug reports are welcome on [Cybersynth's GitHub Repository](https://github.com/ziinahzoor/cybersynth-theme).
47
36
 
48
37
  ## License
49
38
 
50
- The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
39
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). Feel free to use it and customize it the way you like.
data/_config.yml CHANGED
@@ -9,4 +9,7 @@ github_username: ziinahzoor
9
9
 
10
10
  markdown: kramdown
11
11
  google_analytics:
12
- theme: cybersynth-theme
12
+ remote_theme: https://github.com/ziinahzoor/cybersynth-theme
13
+
14
+ plugins:
15
+ - jekyll-remote-theme
@@ -28,6 +28,7 @@ section {
28
28
  text-shadow: 1px 1px $cybergreen;
29
29
  overflow-wrap: break-word;
30
30
  line-height: 2.5rem;
31
+ margin-block: calc(1.5rem - 4px);
31
32
  }
32
33
  }
33
34
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cybersynth-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafael Rosa Becker dos Santos
@@ -45,6 +45,7 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
+ - CHANGELOG.md
48
49
  - LICENSE.txt
49
50
  - README.md
50
51
  - _config.yml
@@ -64,7 +65,10 @@ files:
64
65
  homepage: https://github.com/ziinahzoor/cybersynth-theme
65
66
  licenses:
66
67
  - MIT
67
- metadata: {}
68
+ metadata:
69
+ homepage_uri: https://github.com/ziinahzoor/cybersynth-theme
70
+ source_code_uri: https://github.com/ziinahzoor/cybersynth-theme
71
+ changelog_uri: https://github.com/ziinahzoor/cybersynth-themeblob/main/CHANGELOG.md
68
72
  post_install_message:
69
73
  rdoc_options: []
70
74
  require_paths: