commit 47b8c833f989f06915520608a444232454796fa2 Author: End <53575465+EndofTimee@users.noreply.github.com> Date: Wed Apr 30 20:31:01 2025 -0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b95c0cf --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*.gem +.bundle +.jekyll-cache +.sass-cache +_site +Gemfile.lock \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..0ddf5e3 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +source "https://rubygems.org" +gemspec \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e0790af --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Tonic Starter + +A sample [Jekyll](https://jekyllrb.com) theme designed to be a starting point for all [Tonic](https://github.com/hackclub/tonic) submissions. + +This template is intentionally left incomplete; users should play through Tonic to learn how to make a full-featured theme. + +# Usage +1. At the top of this page, select **Use this template** > **Create a new repository** to clone the template to your account. +2. Create a codespace from the created repository (for beginners) or use `git clone` (for advanced users) to start pushing commits. +3. Run `gem install jekyll`, then `jekyll serve` to see the template in action. \ No newline at end of file diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..795159b --- /dev/null +++ b/_config.yml @@ -0,0 +1,5 @@ +title: tonic-starter +description: "" +encoding: utf-8 + +exclude: ["README.md", "LICENSE", "*.gem", "*.gemspec", "Gemfile.lock"] \ No newline at end of file diff --git a/index.md b/index.md new file mode 100644 index 0000000..17cdad2 --- /dev/null +++ b/index.md @@ -0,0 +1,4 @@ +--- +--- + +# tonic-starter \ No newline at end of file diff --git a/tonic-starter.gemspec b/tonic-starter.gemspec new file mode 100644 index 0000000..467a3f9 --- /dev/null +++ b/tonic-starter.gemspec @@ -0,0 +1,18 @@ +# coding: utf-8 +# frozen_string_literal: true + +Gem::Specification.new do |spec| + spec.name = "tonic-starter" + spec.version = "0.1.0" + spec.authors = [""] + spec.email = [""] + + spec.summary = "" + spec.homepage = "" + + spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|_config\.yml|404\.md)!i) } + + spec.add_runtime_dependency "jekyll", ">= 3.9.0" + + spec.add_development_dependency "bundler" +end