sitepress-cli 3.1.4 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41606d8ed4ce43a8a8f16919654afcb85636a5339d69796598c3b9355a830854
4
- data.tar.gz: a00216162bece43bb527e75e4f9ebdbffe570f5e84751dd25fca1d6069af4193
3
+ metadata.gz: 643f5c9c5a586118dffcba03a3427b822d80fca9a07ed7bd6ccb538a6e155e25
4
+ data.tar.gz: edae452363a10ff0db5ee5a6f4055ca42dab7a3da19175a7b751a334402d3fd9
5
5
  SHA512:
6
- metadata.gz: 121eda84f7319b4d19bc66cef242e3456a8ff33b650ac44892e048109b68279c9fab8fd9ec55cdf3df4c9c552d0301a04b9fe0a6256523cb6bcd5d715a72e16e
7
- data.tar.gz: e9f88fa8b3d16ab0d12269ab9b7de12ffb01c20c6249d59bedad1d6bbc6064548118095e01498c24806456a581b998fda8eda53411f38ee957c30e7f6316cd92
6
+ metadata.gz: 18726634089a5d60d4831da6d2586f614ec2d89406d86b639660d6b8cb906618c9eacec0f8fed960d52943608bba0106cb646042876fb255074caabfb3a7100f
7
+ data.tar.gz: 5030c351c7f041fd066fc4e6b535108fff887b4a0afd32f5e97c9abb3986c391536739bb64828aed86b596ef3ddc81ffa82b9fbb4d8bc44b21b2579ad95f9e87
@@ -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"
@@ -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.1.4
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-10-04 00:00:00.000000000 Z
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.1.4
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.1.4
54
+ version: 3.2.0
55
55
  description:
56
56
  email:
57
57
  - bradgessler@gmail.com
@@ -74,6 +74,7 @@ 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
@@ -101,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
102
  - !ruby/object:Gem::Version
102
103
  version: '0'
103
104
  requirements: []
104
- rubygems_version: 3.3.20
105
+ rubygems_version: 3.3.7
105
106
  signing_key:
106
107
  specification_version: 4
107
108
  summary: Sitepress command line interface and compilation tools for static site.