sitepress-cli 3.1.3 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/sitepress-cli.gemspec +5 -2
- data/templates/default/Gemfile.tt +5 -0
- data/templates/default/README.md +2 -0
- data/templates/default/components/.gitkeep +0 -0
- metadata +11 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 643f5c9c5a586118dffcba03a3427b822d80fca9a07ed7bd6ccb538a6e155e25
|
4
|
+
data.tar.gz: edae452363a10ff0db5ee5a6f4055ca42dab7a3da19175a7b751a334402d3fd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18726634089a5d60d4831da6d2586f614ec2d89406d86b639660d6b8cb906618c9eacec0f8fed960d52943608bba0106cb646042876fb255074caabfb3a7100f
|
7
|
+
data.tar.gz: 5030c351c7f041fd066fc4e6b535108fff887b4a0afd32f5e97c9abb3986c391536739bb64828aed86b596ef3ddc81ffa82b9fbb4d8bc44b21b2579ad95f9e87
|
data/sitepress-cli.gemspec
CHANGED
@@ -9,9 +9,12 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Brad Gessler"]
|
10
10
|
spec.email = ["bradgessler@gmail.com"]
|
11
11
|
spec.licenses = ["MIT"]
|
12
|
-
|
13
12
|
spec.summary = %q{Sitepress command line interface and compilation tools for static site.}
|
14
|
-
spec.homepage = "https://
|
13
|
+
spec.homepage = "https://sitepress.cc/"
|
14
|
+
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = "https://github.com/sitepress/sitepress"
|
17
|
+
spec.metadata["changelog_uri"] = "https://github.com/sitepress/sitepress/tags"
|
15
18
|
|
16
19
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
20
|
spec.bindir = "exe"
|
@@ -9,5 +9,10 @@ gem "webrick"
|
|
9
9
|
# Templating engines. Under the hood Sitepress uses a slimmed
|
10
10
|
# down Rails, so rails templating engines should mostly work.
|
11
11
|
gem "haml-rails"
|
12
|
+
gem "slim-rails"
|
12
13
|
gem "sass-rails"
|
13
14
|
gem "markdown-rails"
|
15
|
+
|
16
|
+
# View component libraries.
|
17
|
+
gem "phlex"
|
18
|
+
gem "view_component"
|
data/templates/default/README.md
CHANGED
@@ -60,6 +60,8 @@ Like Rails, Sitepress organizes files in certain directories:
|
|
60
60
|
|
61
61
|
* `config` - All configuration files and initializers belong in this directory. The `config/site.rb` file has settings that can be changed for the Sitepress site. Changes made to this file require the `sitepress server` to be restarted.
|
62
62
|
|
63
|
+
* `components` - Location of view component files.
|
64
|
+
|
63
65
|
## Compiling & publishing the website
|
64
66
|
|
65
67
|
Once you're satisfied with your website and you're ready to compile it into static HTML files, run `sitepress compile` and the website will be built to `./build`.
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sitepress-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brad Gessler
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.
|
47
|
+
version: 3.2.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 3.
|
54
|
+
version: 3.2.0
|
55
55
|
description:
|
56
56
|
email:
|
57
57
|
- bradgessler@gmail.com
|
@@ -74,15 +74,19 @@ files:
|
|
74
74
|
- templates/default/assets/images/logo-white.svg
|
75
75
|
- templates/default/assets/javascripts/.gitkeep
|
76
76
|
- templates/default/assets/stylesheets/site.css.scss
|
77
|
+
- templates/default/components/.gitkeep
|
77
78
|
- templates/default/config/site.rb
|
78
79
|
- templates/default/helpers/page_helper.rb
|
79
80
|
- templates/default/layouts/layout.html.erb
|
80
81
|
- templates/default/pages/favicon.ico
|
81
82
|
- templates/default/pages/index.html.erb
|
82
|
-
homepage: https://
|
83
|
+
homepage: https://sitepress.cc/
|
83
84
|
licenses:
|
84
85
|
- MIT
|
85
|
-
metadata:
|
86
|
+
metadata:
|
87
|
+
homepage_uri: https://sitepress.cc/
|
88
|
+
source_code_uri: https://github.com/sitepress/sitepress
|
89
|
+
changelog_uri: https://github.com/sitepress/sitepress/tags
|
86
90
|
post_install_message:
|
87
91
|
rdoc_options: []
|
88
92
|
require_paths:
|
@@ -98,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
102
|
- !ruby/object:Gem::Version
|
99
103
|
version: '0'
|
100
104
|
requirements: []
|
101
|
-
rubygems_version: 3.3.
|
105
|
+
rubygems_version: 3.3.7
|
102
106
|
signing_key:
|
103
107
|
specification_version: 4
|
104
108
|
summary: Sitepress command line interface and compilation tools for static site.
|