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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 625954e5d29b533a49daf60f58d4ed0b12a83589
4
- data.tar.gz: a7a76f682448eb9a94fadb754681b9bedf8b8c84
3
+ metadata.gz: 6a1302048a3a57f2b49f12e57e7f3e50647270d8
4
+ data.tar.gz: d17a6509908721ac2d94ff139371b6360b3720cb
5
5
  SHA512:
6
- metadata.gz: b74b0248aaa5463ccfc6678fe1a461d46d3b43834b57ab9ce5c8dc80dc248e2e441ee39139e262617acd51e00a7e53cc38e5f9276f5562562bd60a797ba51675
7
- data.tar.gz: 7a8ced63a9e6b5369cac84462f4e8840ad954afb1df9f0beac2912ab2a803b39349c20b0807e130a2edefa9fe483dad289846f4b4033d7f744aedc5910a58d74
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
@@ -17,6 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
18
  spec.require_paths = ["lib"]
19
19
 
20
+ spec.add_dependency "thor", ">= 0.19"
20
21
  spec.add_dependency "jekyll", ">= 2.1"
21
22
  spec.add_dependency "stringex", ">= 2"
22
23
 
@@ -1,3 +1,3 @@
1
1
  module Jekyllpress
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
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.2
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