guard-jekyll-plus 1.2.3 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +5 -3
- data/README.md +5 -5
- data/lib/guard/{jekyllplus.rb → jekyll-plus.rb} +0 -0
- data/lib/guard/jekyll-plus/templates/Guardfile +1 -1
- data/lib/guard/jekyll-plus/version.rb +1 -1
- data/test/Gemfile.lock +2 -2
- data/test/Guardfile +1 -2
- metadata +3 -3
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
guard-jekyll-plus (1.
|
4
|
+
guard-jekyll-plus (1.2.3)
|
5
5
|
guard (>= 1.1.0)
|
6
6
|
jekyll (>= 1.0.0)
|
7
7
|
|
@@ -25,7 +25,7 @@ GEM
|
|
25
25
|
pry (>= 0.9.10)
|
26
26
|
thor (>= 0.14.6)
|
27
27
|
highline (1.6.19)
|
28
|
-
jekyll (1.0
|
28
|
+
jekyll (1.1.0)
|
29
29
|
classifier (~> 1.3)
|
30
30
|
colorator (~> 0.1)
|
31
31
|
commander (~> 4.1.3)
|
@@ -34,6 +34,7 @@ GEM
|
|
34
34
|
liquid (~> 2.3)
|
35
35
|
maruku (~> 0.5)
|
36
36
|
pygments.rb (~> 0.5.0)
|
37
|
+
redcarpet (~> 2.2.2)
|
37
38
|
safe_yaml (~> 0.7.0)
|
38
39
|
kramdown (1.0.2)
|
39
40
|
liquid (2.5.0)
|
@@ -50,7 +51,7 @@ GEM
|
|
50
51
|
coderay (~> 1.0.5)
|
51
52
|
method_source (~> 0.8)
|
52
53
|
slop (~> 3.4)
|
53
|
-
pygments.rb (0.5.
|
54
|
+
pygments.rb (0.5.2)
|
54
55
|
posix-spawn (~> 0.3.6)
|
55
56
|
yajl-ruby (~> 1.1.0)
|
56
57
|
rb-fsevent (0.9.3)
|
@@ -58,6 +59,7 @@ GEM
|
|
58
59
|
ffi (>= 0.5.0)
|
59
60
|
rb-kqueue (0.2.0)
|
60
61
|
ffi (>= 0.5.0)
|
62
|
+
redcarpet (2.2.2)
|
61
63
|
safe_yaml (0.7.1)
|
62
64
|
slop (3.4.5)
|
63
65
|
syntax (1.0.0)
|
data/README.md
CHANGED
@@ -38,7 +38,7 @@ Navigate to your Jekyll project directory and create a Guardfile using:
|
|
38
38
|
Or if you already have a Guardfile, add a Jekyll guard.
|
39
39
|
|
40
40
|
```ruby
|
41
|
-
guard
|
41
|
+
guard "jekyll-plus" do
|
42
42
|
watch /.*/
|
43
43
|
ignore /^_site/
|
44
44
|
end
|
@@ -46,7 +46,7 @@ end
|
|
46
46
|
|
47
47
|
Run the guard and Jekyll will begin watching your project.
|
48
48
|
|
49
|
-
$ guard
|
49
|
+
$ bundle exec guard
|
50
50
|
|
51
51
|
If your Jekyll project has a non-standard directory stucture like this:
|
52
52
|
|
@@ -59,7 +59,7 @@ If your Jekyll project has a non-standard directory stucture like this:
|
|
59
59
|
You would do this instead:
|
60
60
|
|
61
61
|
```ruby
|
62
|
-
guard
|
62
|
+
guard "jekyll-plus" do
|
63
63
|
watch /^source/
|
64
64
|
watch /_config.yml/
|
65
65
|
end
|
@@ -89,7 +89,7 @@ This guard has two configurations.
|
|
89
89
|
Here's how you would add `txt` to the list of file extensions which triggers a Jekyll build.
|
90
90
|
|
91
91
|
```ruby
|
92
|
-
guard
|
92
|
+
guard "jekyll-plus", :extensions => ['txt'] do
|
93
93
|
watch /.*/
|
94
94
|
ignore /^_site/
|
95
95
|
end
|
@@ -103,7 +103,7 @@ which don't match these extensions will be simply copied over to the destination
|
|
103
103
|
Here's how you might tell Jekyll to read from multiple configuration files.
|
104
104
|
|
105
105
|
```ruby
|
106
|
-
guard
|
106
|
+
guard "jekyll-plus", :config => ['settings.yml', 'override.yml'] do
|
107
107
|
watch /.*/
|
108
108
|
ignore /^_site/
|
109
109
|
end
|
File without changes
|
data/test/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../
|
3
3
|
specs:
|
4
|
-
guard-jekyll-plus (1.
|
4
|
+
guard-jekyll-plus (1.3.0)
|
5
5
|
guard (>= 1.1.0)
|
6
6
|
jekyll (>= 1.0.0)
|
7
7
|
|
@@ -12,7 +12,7 @@ GEM
|
|
12
12
|
fast-stemmer (>= 1.0.0)
|
13
13
|
coderay (1.0.9)
|
14
14
|
colorator (0.1)
|
15
|
-
commander (4.1.
|
15
|
+
commander (4.1.4)
|
16
16
|
highline (~> 1.6.11)
|
17
17
|
directory_watcher (1.4.1)
|
18
18
|
fast-stemmer (1.0.2)
|
data/test/Guardfile
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
# A sample Guardfile
|
2
2
|
# More info at https://github.com/guard/guard#readme
|
3
|
-
#
|
4
3
|
|
5
|
-
guard
|
4
|
+
guard "jekyll-plus", :config => ['_config.yml', '_override.yml'], :serve => true do
|
6
5
|
watch /.*/
|
7
6
|
ignore /^_site/
|
8
7
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-jekyll-plus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-07-
|
12
|
+
date: 2013-07-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: guard
|
@@ -58,9 +58,9 @@ files:
|
|
58
58
|
- README.md
|
59
59
|
- Rakefile
|
60
60
|
- guard-jekyll-plus.gemspec
|
61
|
+
- lib/guard/jekyll-plus.rb
|
61
62
|
- lib/guard/jekyll-plus/templates/Guardfile
|
62
63
|
- lib/guard/jekyll-plus/version.rb
|
63
|
-
- lib/guard/jekyllplus.rb
|
64
64
|
- test/.gitignore
|
65
65
|
- test/Gemfile
|
66
66
|
- test/Gemfile.lock
|