jekyllpress 0.0.2 → 0.0.3
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 +4 -4
- data/README.md +12 -10
- data/jekyllpress.gemspec +1 -0
- data/lib/jekyllpress/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a1302048a3a57f2b49f12e57e7f3e50647270d8
|
|
4
|
+
data.tar.gz: d17a6509908721ac2d94ff139371b6360b3720cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1411a6ac4c9cd11ddfbfacbff98a8723e8659331cdb1eba30ede5a965218cdc5b84c434ae7bb5cd832c8e143a9513a0245af500476f00573fc0191ba6fd23478
|
|
7
|
+
data.tar.gz: ced7dfee73e0010d305b5e5309e3f237c32ad4f86c5487c3133c0a18cee332e1fdb1e4d569571691c395d604ff964841cb7d019a6f64e4ec3ad58c809c5abd1d
|
data/README.md
CHANGED
|
@@ -8,6 +8,18 @@ A [Thor](http://whatisthor.com) script that provides several actions to help sup
|
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
|
+
### Setting Up Templates
|
|
12
|
+
|
|
13
|
+
If you don't have templates specified in your `_config.yml` file or in your `source` folder, you can create them with the `setup` action:
|
|
14
|
+
|
|
15
|
+
$ jekyllpress setup
|
|
16
|
+
Configuration file: /Volumes/muis1t/Projects/rubystuff/jekyll/test_jekyll_2.1/_config.yml
|
|
17
|
+
create _templates
|
|
18
|
+
create _templates/new_post.markdown
|
|
19
|
+
create _templates/new_page.markdown
|
|
20
|
+
|
|
21
|
+
You can edit the markdown templates to your heart's delight. :)
|
|
22
|
+
|
|
11
23
|
### New Post
|
|
12
24
|
|
|
13
25
|
Creating a new post is done with:
|
|
@@ -93,17 +105,7 @@ Create a new page with title TITLE
|
|
|
93
105
|
* the `location` option lets you specify a path down to where the page will live.
|
|
94
106
|
* the location *must* be relative, and will placed starting from the source folder.
|
|
95
107
|
|
|
96
|
-
### Setting Up Templates
|
|
97
|
-
|
|
98
|
-
If you don't have templates specified in your `_config.yml` file or in your `source` folder, you can create them with the `setup` action:
|
|
99
108
|
|
|
100
|
-
$ jekyllpress setup
|
|
101
|
-
Configuration file: /Volumes/muis1t/Projects/rubystuff/jekyll/test_jekyll_2.1/_config.yml
|
|
102
|
-
create _templates
|
|
103
|
-
create _templates/new_post.markdown
|
|
104
|
-
create _templates/new_page.markdown
|
|
105
|
-
|
|
106
|
-
You can edit the markdown templates to your heart's delight. :)
|
|
107
109
|
|
|
108
110
|
## Contributing
|
|
109
111
|
|
data/jekyllpress.gemspec
CHANGED
data/lib/jekyllpress/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyllpress
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tamara Temple
|
|
@@ -10,6 +10,20 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2014-07-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: thor
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0.19'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0.19'
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: jekyll
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|