bridgetown-docs-template 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: bfc2ec8fd72b7bc4ee38a7ab5571589b5af24560110819c52898c6d189d26b0a
4
+ data.tar.gz: 47d7ce752e127cba3c13e798baf7140547578c36652b20dfb484e78c92e1b46b
5
+ SHA512:
6
+ metadata.gz: fbf0f7b23d37b9c305d9c3b93c8f1dc3410e871038496437354d3889782784f195336acd574c015c4cb78bc7ca802f151058ce2c90b3bc90860dfdb6575c3674
7
+ data.tar.gz: 7e7e7ce571004980ffc3247278c1ae8d4fd1af459c5c2e0d32e73195bd3294747210a7affbab73651c7d349caaac31d99365787d304b847ade37db985c74087b
data/.gitignore ADDED
@@ -0,0 +1,38 @@
1
+ /vendor
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ *.bundle
12
+ *.so
13
+ *.o
14
+ *.a
15
+ mkmf.log
16
+ *.gem
17
+ Gemfile.lock
18
+ .bundle
19
+ .ruby-version
20
+
21
+ # Node
22
+ node_modules
23
+ .npm
24
+ .node_repl_history
25
+
26
+ # Yarn
27
+ yarn-error.log
28
+ yarn-debug.log*
29
+ .pnp/
30
+ .pnp.js
31
+
32
+ # Yarn Integrity file
33
+ .yarn-integrity
34
+
35
+ test/dest
36
+ .bridgetown-metadata
37
+ .bridgetown-cache
38
+ .bridgetown-webpack
data/.rubocop.yml ADDED
@@ -0,0 +1,22 @@
1
+ require: rubocop-bridgetown
2
+
3
+ inherit_gem:
4
+ rubocop-bridgetown: .rubocop.yml
5
+
6
+ AllCops:
7
+ TargetRubyVersion: 2.5
8
+
9
+ Exclude:
10
+ - .gitignore
11
+ - .rubocop.yml
12
+ - "*.gemspec"
13
+
14
+ - Gemfile.lock
15
+ - CHANGELOG.md
16
+ - LICENSE.txt
17
+ - README.md
18
+ - Rakefile
19
+ - bridgetown.automation.rb
20
+
21
+ - script/**/*
22
+ - vendor/**/*
data/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
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.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ - ...
11
+
12
+ ## [0.1.0] - 2022-08-08
13
+
14
+ - First version
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+ gemspec
5
+
6
+ gem "bridgetown", ENV["BRIDGETOWN_VERSION"] if ENV["BRIDGETOWN_VERSION"]
7
+
8
+ group :test do
9
+ gem "minitest"
10
+ gem "minitest-reporters"
11
+ gem "shoulda"
12
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020-present
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,76 @@
1
+ # Bridgetown documentation template using Tailwind CSS
2
+
3
+ A Bridgetown documentation site theme, built with Tailwind CSS.
4
+
5
+
6
+ <img src="https://user-images.githubusercontent.com/988051/183708900-d2945c3b-8ff5-4aff-a3c1-98335cc90277.jpg" alt="preview of the Bridgetown documentation theme, built with Tailwind CSS" />
7
+
8
+
9
+ ## Sponsored By [Spinal](https://spinalcms.com/)
10
+
11
+ <a href="https://spinalcms.com/" target="_blank">
12
+ <img src="https://user-images.githubusercontent.com/988051/183079316-af747ef2-42a9-47d8-9a0c-488ed4b6a689.jpg" alt="Spinal CMS logo" width="400" />
13
+ </a>
14
+
15
+
16
+ ## Installation
17
+
18
+ Run this command to add this plugin to your site's Gemfile:
19
+
20
+ ```shell
21
+ $ bundle add bridgetown-docs-template -g bridgetown_plugins
22
+ ```
23
+
24
+
25
+ ## Requirements
26
+
27
+ There are a few requirements for this theme to run.
28
+
29
+ - [Tailwind CSS](https://tailwindcss.com/)
30
+ - [Tailwind CSS Typograhpy](https://tailwindcss.com/docs/typography-plugin)
31
+ - [ERB template engine](https://www.bridgetownrb.com/docs/template-engines/erb-and-beyond)
32
+
33
+ ### Minimum frontmatter requirements
34
+
35
+ The following frontmatter is expected in your collection resources:
36
+
37
+ - layout: bridgetown_docs_template/layout
38
+ - title
39
+ - description
40
+ - category
41
+
42
+ If you want to show the “video” or “quick links” section—likely in your docs root, add `show_videotour: true` and `show_quicklinks: true` to your root's markdown file.
43
+
44
+
45
+ ### Add the gem's path in the `content` array, like so:
46
+
47
+ ```js
48
+ content: [
49
+ //…
50
+ "path-to-your-gems"
51
+ //…
52
+ ]
53
+ ```
54
+
55
+
56
+ ## Configuring views/components
57
+
58
+ This theme makes heavy use of [Bridgetown's components](https://www.bridgetownrb.com/docs/components). If you want to make certain tweaks to any part, it's easy to change any component. Just follow [this guide](https://www.bridgetownrb.com/docs/commands/plugins#copying-files-out-of-plugin-source-folders).
59
+
60
+
61
+ ## Optional configuration options
62
+
63
+ The plugin will automatically use any of the following metadata variables if they are present in your site's `_data/site_metadata.yml` file.
64
+
65
+ - name
66
+ - email
67
+
68
+
69
+ ## Contributing
70
+
71
+ 1. Fork it (https://github.com/spinalcms/bridgetown-docs-template/fork)
72
+ 2. Clone the fork using `git clone` to your local development machine.
73
+ 3. Create your feature branch (`git checkout -b my-new-feature`)
74
+ 4. Commit your changes (`git commit -am 'Add some feature'`)
75
+ 5. Push to the branch (`git push origin my-new-feature`)
76
+ 6. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/test_*.rb"]
8
+ t.warning = false
9
+ end
10
+
11
+ task :default => :test
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/bridgetown-docs-template/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "bridgetown-docs-template"
7
+ spec.version = BridgetownDocsTemplate::VERSION
8
+ spec.author = "Spinal CMS Developers"
9
+ spec.email = "devs@spinalcms.com"
10
+ spec.summary = "A minimal Bridgetown template for a documentation site using Tailwind CSS."
11
+ spec.homepage = "https://github.com/spinalcms/bridgetown-docs-template"
12
+ spec.license = "MIT"
13
+
14
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|spec|features|frontend)/!) }
15
+ spec.require_paths = ["lib"]
16
+ spec.metadata = { "yarn-add" => "bridgetown-docs-template@#{BridgetownDocsTemplate::VERSION}" }
17
+
18
+ spec.required_ruby_version = ">= 2.7.0"
19
+
20
+ spec.add_dependency "bridgetown", ">= 1.0", "< 2.0"
21
+
22
+ spec.add_development_dependency "bundler"
23
+ spec.add_development_dependency "rake", ">= 13.0"
24
+ end
@@ -0,0 +1,7 @@
1
+ <h3 class="mt-8 text-base font-bold tracking-tight text-slate-900">
2
+ Have questions?
3
+ </h3>
4
+
5
+ <p class="text-slate-900">
6
+ Still have questions? <a href="mailto:<%= @site.metadata.email %>" class="underline hover:no-underline">Talk to support</a>.
7
+ </p>
@@ -0,0 +1,5 @@
1
+ class BridgetownDocsTemplate::ContentFooterComponent < Bridgetown::Component
2
+ def initialize(site)
3
+ @site = site
4
+ end
5
+ end
@@ -0,0 +1,29 @@
1
+ <dl class="flex pt-6 mt-6 border-t border-slate-200">
2
+ <% if !@page.previous.nil? %>
3
+ <div class="mr-auto text-left">
4
+ <dt class="text-sm font-normal tracking-tight text-slate-600">
5
+ Previous
6
+ </dt>
7
+
8
+ <dd class="mt-1">
9
+ <a href="<%= @page.previous.relative_url %>" class="text-base font-semibold text-slate-900 hover:underline">
10
+ <%= @page.previous.data.title %>
11
+ </a>
12
+ </dd>
13
+ </div>
14
+ <% end %>
15
+
16
+ <% if !@page.next.nil? %>
17
+ <div class="ml-auto text-right">
18
+ <dt class="text-sm font-normal tracking-tight text-slate-600">
19
+ Next
20
+ </dt>
21
+
22
+ <dd class="mt-1">
23
+ <a href="<%= @page.next.relative_url %>" class="text-base font-semibold text-slate-900 hover:underline">
24
+ <%= @page.next.data.title %>
25
+ </a>
26
+ </dd>
27
+ </div>
28
+ <% end %>
29
+ </dl>
@@ -0,0 +1,5 @@
1
+ class BridgetownDocsTemplate::ContentNavigationComponent < Bridgetown::Component
2
+ def initialize(page)
3
+ @page = page
4
+ end
5
+ end
@@ -0,0 +1,22 @@
1
+ <header class="sticky top-0 z-50 flex items-center justify-between px-3 py-2 border-b shadow-lg bg-white/90 backdrop-blur-sm border-slate-400/40">
2
+ <div class="flex items-center flex-grow basis-0">
3
+ <a href="/" class="text-lg font-semibold tracking-tight text-slate-900">
4
+ <%= "#{@site.metadata.fetch("title", "Unknown")} docs" %>
5
+ </a>
6
+ </div>
7
+
8
+ <form action="https://duckduckgo.com/" class="md:w-80 lg:w-96">
9
+ <span class="relative flex items-center group">
10
+ <svg aria-hidden="true" viewBox="0 0 20 20" class="absolute w-4 h-4 ml-3 fill-slate-400 group-hover:fill-slate-500 group-focus:fill-slate-500"><path d="M16.293 17.707a1 1 0 0 0 1.414-1.414l-1.414 1.414ZM9 14a5 5 0 0 1-5-5H2a7 7 0 0 0 7 7v-2ZM4 9a5 5 0 0 1 5-5V2a7 7 0 0 0-7 7h2Zm5-5a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7v2Zm8.707 12.293-3.757-3.757-1.414 1.414 3.757 3.757 1.414-1.414ZM14 9a4.98 4.98 0 0 1-1.464 3.536l1.414 1.414A6.98 6.98 0 0 0 16 9h-2Zm-1.464 3.536A4.98 4.98 0 0 1 9 14v2a6.98 6.98 0 0 0 4.95-2.05l-1.414-1.414Z"></path></svg>
11
+ <input type="text" name="q" placeholder="Search docs…" class="w-full py-2 pl-10 pr-2 border rounded bg-slate-100 placeholder-slate-400 text-slate-800 border-slate-100 outline outline-offset-2 outline-2 outline-transparent hover:border-slate-200 focus:border-slate-200 focus:outline-slate-600" />
12
+ </span>
13
+ <input type="hidden" name="sites" value="spinalcms.com">
14
+ <input type="submit" value="Search" class="sr-only" />
15
+ </form>
16
+
17
+ <div class="items-center justify-end flex-grow hidden basis-0 md:flex">
18
+ <a href="https://spinalcms.com/" class="px-4 py-2 text-sm font-semibold rounded bg-slate-900 text-slate-50 transition ease-in-out delay-75 hover:scale-105 duration-200">
19
+ Go to homepage
20
+ </a>
21
+ </div>
22
+ </header>
@@ -0,0 +1,5 @@
1
+ class BridgetownDocsTemplate::HeaderComponent < Bridgetown::Component
2
+ def initialize(site)
3
+ @site = site
4
+ end
5
+ end
@@ -0,0 +1,32 @@
1
+ <label for="navigation" class="fixed bottom-0 left-0 z-50 flex items-center justify-center w-12 h-12 mb-4 ml-4 bg-white border rounded-full shadow-lg cursor-pointer text-slate-600 border-slate-300 lg:hidden transition duration-200 ease-in-out active:scale-95">
2
+ <svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
3
+ <path stroke-linecap="round" stroke-linejoin="round" d="M4 8h16M4 16h16" />
4
+ </svg>
5
+ </label>
6
+
7
+ <input type="checkbox" name="navigation" id="navigation" class="hidden peer" />
8
+ <div class="fixed top-[3.5rem] h-screen shadow-xl px-4 left-0 hidden peer-checked:block lg:relative lg:top-0 lg:h-auto lg:px-0 lg:block lg:flex-none lg:shadow-none">
9
+ <div class="absolute inset-y-0 right-0 w-full lg:w-[50vw] bg-white lg:bg-slate-50"></div>
10
+
11
+ <nav class="sticky top-[4.5rem] w-64 pr-8 text-base lg:text-sm xl:w-72 xl:pr-16">
12
+ <ul role="list" class="-ml-0.5 h-[calc(100vh-4.5rem)] overflow-y-auto py-7 pl-0.5 space-y-8">
13
+ <% group_by(@resources, "category").each do |resource| %>
14
+ <li>
15
+ <h3 class="font-semibold tracking-tight text-slate-900">
16
+ <%= resource.fetch("name", "No Category").titleize %>
17
+ </h3>
18
+
19
+ <ul role="list" class="pl-3 mt-3 space-y-2">
20
+ <% sort(resource.fetch("items", []), "order").each do |item| %>
21
+ <li>
22
+ <a href="<%= url_for(item) %>" class="text-slate-900 hover:text-slate-800">
23
+ <%= item.data.title %>
24
+ </a>
25
+ </li>
26
+ <% end %>
27
+ </ul>
28
+ </li>
29
+ <% end %>
30
+ </ul>
31
+ </nav>
32
+ </div>
@@ -0,0 +1,5 @@
1
+ class BridgetownDocsTemplate::NavigationComponent < Bridgetown::Component
2
+ def initialize(resources)
3
+ @resources = resources
4
+ end
5
+ end
@@ -0,0 +1,53 @@
1
+ <h3 class="mt-16 text-base font-bold tracking-tight text-slate-900">
2
+ Get set up quickly
3
+ </h3>
4
+
5
+ <ul class="mt-4 grid grid-cols-1 gap-6 sm:grid-cols-2">
6
+ <li>
7
+ <a href="#" class="block px-6 py-4 border rounded bg-slate-50 border-slate-100 hover:bg-white">
8
+ <h4 class="font-bold tracking-tight text-slate-900">
9
+ Connect your GitHub account
10
+ </h4>
11
+
12
+ <p class="text-slate-600">
13
+ What you need to know before connecting your GitHub account
14
+ </p>
15
+ </a>
16
+ </li>
17
+
18
+ <li>
19
+ <a href="#" class="block px-6 py-4 border rounded bg-slate-50 border-slate-100 hover:bg-white">
20
+ <h4 class="font-bold tracking-tight text-slate-900">
21
+ Add your first content type
22
+ </h4>
23
+
24
+ <p class="text-slate-600">
25
+ Learn what content types are in Spinal
26
+ </p>
27
+ </a>
28
+ </li>
29
+
30
+ <li class="">
31
+ <a href="#" class="block px-6 py-4 border rounded bg-slate-50 border-slate-100 hover:bg-white">
32
+ <h4 class="font-bold tracking-tight text-slate-900">
33
+ Invite your first team member
34
+ </h4>
35
+
36
+ <p class="text-slate-600">
37
+ You write your best marketing content with your team
38
+ </p>
39
+ </a>
40
+ </li>
41
+
42
+ <li class="">
43
+ <a href="#" class="block px-6 py-4 border rounded bg-slate-50 border-slate-100 hover:bg-white">
44
+ <h4 class="font-bold tracking-tight text-slate-900">
45
+ Publish your content
46
+ </h4>
47
+
48
+ <p class="text-slate-600">
49
+ Publishing with Spinal is really just one click of a button
50
+ </p>
51
+ </a>
52
+ </li>
53
+ </ul>
@@ -0,0 +1,2 @@
1
+ class BridgetownDocsTemplate::QuickLinksComponent < Bridgetown::Component
2
+ end
@@ -0,0 +1,15 @@
1
+ <a href="#" class="flex flex-col w-full mt-4 overflow-hidden rounded-lg shadow-xl md:flex-row md:w-4/5">
2
+ <div class="flex items-center justify-center w-full px-4 py-16 text-sm font-normal md:w-1/3 text-slate-900/20 bg-gradient-to-br from-indigo-200 via-sky-100 to-indigo-100">
3
+ [Screenshot Image]
4
+ </div>
5
+
6
+ <div class="w-full px-6 py-4 border-t border-b border-r md:w-2/3 border-slate-200">
7
+ <h3 class="text-xl font-semibold tracking-tight text-slate-900">
8
+ Video walkthrough
9
+ </h3>
10
+
11
+ <p class="mt-1 text-lg text-slate-600">
12
+ Watch this 5 minutes video-walkthrough of Spinal. You quickly learn how to set up your dashboard, invite team members, set permissions and how to schedule and publish content.
13
+ </p>
14
+ </div>
15
+ </a>
@@ -0,0 +1,2 @@
1
+ class BridgetownDocsTemplate::VideoTourComponent < Bridgetown::Component
2
+ end
@@ -0,0 +1,39 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <%= render BridgetownDocsTemplate::HeaderComponent.new(site) %>
6
+
7
+ <main class="relative flex justify-center mx-auto max-w-8xl sm:px-2 lg:px-8 xl:px-12">
8
+ <%= render BridgetownDocsTemplate::NavigationComponent.new(page.collection.resources) %>
9
+
10
+ <div class="flex-auto max-w-2xl min-w-0 px-4 py-10 lg:max-w-none lg:pr-0 lg:pl-8 xl:px-16">
11
+ <article class="">
12
+ <header class="">
13
+ <p class="text-base font-medium text-slate-500">
14
+ <%= page.data.category.titleize %>
15
+ </p>
16
+
17
+ <h1 class="text-3xl font-bold tracking-tight text-slate-900">
18
+ <%= page.data.title %>
19
+ </h1>
20
+ </header>
21
+
22
+ <p class="mt-2 text-xl text-slate-600">
23
+ <%= page.data.description %>
24
+ </p>
25
+
26
+ <%= render BridgetownDocsTemplate::VideoTourComponent.new if page.data.show_videotour %>
27
+
28
+ <%= render BridgetownDocsTemplate::QuickLinksComponent.new if page.data.show_quicklinks %>
29
+
30
+ <div class="mt-8 prose prose-slate max-w-none prose-headings:font-semibold prose-headings:tracking-tight prose-lead:text-slate-500 prose-a:font-semibold prose-a:underline prose-pre:bg-slate-900">
31
+ <%= content %>
32
+ </div>
33
+
34
+ <%= render BridgetownDocsTemplate::ContentFooterComponent.new(site) %>
35
+ </article>
36
+
37
+ <%= render BridgetownDocsTemplate::ContentNavigationComponent.new(page) %>
38
+ </div>
39
+ </main>
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module BridgetownDocsTemplate
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bridgetown"
4
+
5
+ Bridgetown::PluginManager.new_source_manifest(
6
+ origin: BridgetownDocsTemplate,
7
+ components: File.expand_path("../components", __dir__),
8
+ layouts: File.expand_path("../layouts", __dir__)
9
+ )
data/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "bridgetown-docs-template",
3
+ "version": "0.1.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/spinalcms/bridgetown-docs-template.git"
7
+ },
8
+ "author": "Spinal Devs <devs@spinalcms.com>",
9
+ "homepage": "https://spinalcms.com",
10
+ "license": "MIT",
11
+ "private": false,
12
+ "devDependencies": {
13
+ "tailwindcss": "^3.1.8",
14
+ "@tailwindcss/typography": "^0.5.4"
15
+ }
16
+ }
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bridgetown-docs-template
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Spinal CMS Developers
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-08-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bridgetown
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '13.0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '13.0'
61
+ description:
62
+ email: devs@spinalcms.com
63
+ executables: []
64
+ extensions: []
65
+ extra_rdoc_files: []
66
+ files:
67
+ - ".gitignore"
68
+ - ".rubocop.yml"
69
+ - CHANGELOG.md
70
+ - Gemfile
71
+ - LICENSE.txt
72
+ - README.md
73
+ - Rakefile
74
+ - bridgetown-docs-template.gemspec
75
+ - components/bridgetown_docs_template/content_footer_component.erb
76
+ - components/bridgetown_docs_template/content_footer_component.rb
77
+ - components/bridgetown_docs_template/content_navigation_component.erb
78
+ - components/bridgetown_docs_template/content_navigation_component.rb
79
+ - components/bridgetown_docs_template/header_component.erb
80
+ - components/bridgetown_docs_template/header_component.rb
81
+ - components/bridgetown_docs_template/navigation_component.erb
82
+ - components/bridgetown_docs_template/navigation_component.rb
83
+ - components/bridgetown_docs_template/quick_links_component.erb
84
+ - components/bridgetown_docs_template/quick_links_component.rb
85
+ - components/bridgetown_docs_template/video_tour_component.erb
86
+ - components/bridgetown_docs_template/video_tour_component.rb
87
+ - layouts/bridgetown_docs_template/layout.erb
88
+ - lib/bridgetown-docs-template.rb
89
+ - lib/bridgetown-docs-template/version.rb
90
+ - package.json
91
+ homepage: https://github.com/spinalcms/bridgetown-docs-template
92
+ licenses:
93
+ - MIT
94
+ metadata:
95
+ yarn-add: bridgetown-docs-template@0.1.0
96
+ post_install_message:
97
+ rdoc_options: []
98
+ require_paths:
99
+ - lib
100
+ required_ruby_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: 2.7.0
105
+ required_rubygems_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ requirements: []
111
+ rubygems_version: 3.3.20
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: A minimal Bridgetown template for a documentation site using Tailwind CSS.
115
+ test_files: []