From 1c193eedf83a7f80f40216cde7e82666f5cdaf85 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Wed, 29 May 2019 00:26:21 +0200 Subject: [PATCH] Rename project from kde-jekyll-theme to jekyll-kde-theme --- README.md | 12 ++++++------ _config.yml | 2 +- examples/simple/Gemfile | 2 +- examples/simple/_config.yml | 2 +- kde-jekyll-theme.gemspec => jekyll-kde-theme.gemspec | 6 +++--- 5 files changed, 12 insertions(+), 12 deletions(-) rename kde-jekyll-theme.gemspec => jekyll-kde-theme.gemspec (79%) diff --git a/README.md b/README.md index d852d58..06ed900 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# kde-jekyll-theme +# jekyll-kde-theme This is a jekyll theme for a unified layout across the kde websites. @@ -7,13 +7,13 @@ This is a jekyll theme for a unified layout across the kde websites. Add this line to your Jekyll site's `Gemfile`: ```ruby -gem "kde-jekyll-theme", :git => 'git://invent.kde.org/carlschwan/kde-jekyll-theme' +gem "jekyll-kde-theme", :git => 'https://invent.kde.org/websites/jekyll-kde-theme.git' ``` And add this line to your Jekyll site's `_config.yml`: ```yaml -theme: kde-jekyll-theme +theme: jekyll-kde-theme ``` And then execute: @@ -48,7 +48,7 @@ bundle exec jekyll serve ## Contributing -Bug reports and pull requests are welcome on the KDE Gitlab at https://invent.kde.org/ognarb/kde-jekyll-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [KDE code of conduct](https://kde.org/code-of-conduct/). +Bug reports and pull requests are welcome on the KDE Gitlab at https://invent.kde.org/websites/jekyll-kde-theme. ## Development @@ -57,8 +57,8 @@ To set up your environment to develop this theme, run `bundle install`. 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. When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled. -To add a custom directory to your theme-gem, please edit the regexp in `kde-jekyll-theme.gemspec` accordingly. +To add a custom directory to your theme-gem, please edit the regexp in `jekyll-kde-theme.gemspec` accordingly. ## License -This program is licensed under the GNU AGPL. +This program is licensed under the GNU AGPL. See [KDE Licensing policy](https://community.kde.org/Policies/Licensing_Policy). diff --git a/_config.yml b/_config.yml index 752a34f..e8fdf3b 100644 --- a/_config.yml +++ b/_config.yml @@ -3,7 +3,7 @@ sass: style: compressed markdown: kramdown -theme: kde-jekyll-theme +theme: jekyll-kde-theme defaults: - scope: diff --git a/examples/simple/Gemfile b/examples/simple/Gemfile index 4b18f69..8724268 100644 --- a/examples/simple/Gemfile +++ b/examples/simple/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" ruby RUBY_VERSION gem "jekyll", "3.8" -gem "kde-jekyll-theme", path: '../../' +gem "jekyll-kde-theme", path: '../../' # If you have any plugins, put them here! # group :jekyll_plugins do diff --git a/examples/simple/_config.yml b/examples/simple/_config.yml index ed17c04..2431f14 100644 --- a/examples/simple/_config.yml +++ b/examples/simple/_config.yml @@ -13,7 +13,7 @@ github_username: kde # Build settings markdown: kramdown -theme: kde-jekyll-theme +theme: jekyll-kde-theme sass: style: compressed diff --git a/kde-jekyll-theme.gemspec b/jekyll-kde-theme.gemspec similarity index 79% rename from kde-jekyll-theme.gemspec rename to jekyll-kde-theme.gemspec index 1734bcf..2435a3b 100644 --- a/kde-jekyll-theme.gemspec +++ b/jekyll-kde-theme.gemspec @@ -1,13 +1,13 @@ # frozen_string_literal: true Gem::Specification.new do |spec| - spec.name = "kde-jekyll-theme" - spec.version = "0.1.0" + spec.name = "jekyll-kde-theme" + spec.version = "0.2.0" spec.authors = ["Carl Schwan"] spec.email = ["carl@carlschwan.eu"] spec.summary = "Jekyll theme for KDE websites" - spec.homepage = "https://invent.kde.org/carlschwan/kde-jekyll-theme" + spec.homepage = "https://invent.kde.org/websites/jekyll-kde-theme" spec.license = "AGPL" spec.files = `git ls-files -z`.split("\x0").select do |f| -- GitLab