guard-nanoc 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/NEWS.md +12 -0
- data/README.md +5 -1
- data/guard-nanoc.gemspec +3 -0
- data/lib/guard/nanoc/version.rb +1 -1
- metadata +32 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MDYwYzI0OTQ0M2UxMTg1ZDI4NTIxMjNmNzI2NzhlY2U0ZmQ4ODVmYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NWJlZDcwNDA3ZjQwZTk2ZGIxZmRiZjk3NDI2YWM2Y2E0ZjdlYThkNg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
M2RmNDU2ZmIyNzc5MWUyMjI3OTA3M2E1NDQ2NDE5N2E4MWE0N2U5YTViZGYw
|
10
|
+
YmUyMzFiOTcyYWUxOGNjZjc4NGQyMTRmZGE5NmE4ZmYzNDIyN2UzNWFjMmQ3
|
11
|
+
MDg0Y2RhMjBiYTUyMGQ0MmM0ZWFhNjljNjI1YjcwNTYxMDczMDE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzNjZmU3ZGJiYWZlYjEyZTMyNjY1ZjhhOGNkOGQwNzEwYTUzNTgwNDk3OWVm
|
14
|
+
ODc5YmIxMDhkNjIwOTM0ZjRiNmFkZTJhOTc4MThjZjRjMGYyYjBiY2YzZGRj
|
15
|
+
MWIyMDMwZjdkNjc3MzdmOTc4NmE2ZTcxY2I5NmIwNDk3OTM1M2U=
|
data/NEWS.md
ADDED
data/README.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
This is a guard for [nanoc](http://nanoc.ws/).
|
4
4
|
|
5
|
+
Guard is a framework for listening to filesystem changes and acting upon them. Guard::Nanoc is a plugin for Guard that recompiles nanoc sites on changes.
|
6
|
+
|
5
7
|
## Installation
|
6
8
|
|
7
9
|
Add this line to your application's Gemfile:
|
@@ -18,10 +20,12 @@ Or install it yourself as:
|
|
18
20
|
|
19
21
|
## Usage
|
20
22
|
|
21
|
-
Create a Guardfile using `guard init`:
|
23
|
+
Enter the nanoc site directory for which you want to use Guard::Nanoc. Create a Guardfile using `guard init`:
|
22
24
|
|
23
25
|
$ guard init nanoc
|
24
26
|
|
25
27
|
Execute guard:
|
26
28
|
|
27
29
|
$ guard
|
30
|
+
|
31
|
+
Whenever you change a file in the nanoc site directory now, the site will be recompiled!
|
data/guard-nanoc.gemspec
CHANGED
@@ -14,6 +14,9 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.author = 'Denis Defreyne'
|
15
15
|
s.email = 'denis.defreyne@stoneship.org'
|
16
16
|
|
17
|
+
s.add_dependency 'guard', '>= 1.8.0'
|
18
|
+
s.add_dependency 'nanoc', '>= 3.6.3'
|
19
|
+
|
17
20
|
s.files = Dir['[A-Z]*'] + Dir['lib/**/*'] + [ 'guard-nanoc.gemspec' ]
|
18
21
|
s.require_paths = [ 'lib' ]
|
19
22
|
end
|
data/lib/guard/nanoc/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-nanoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Denis Defreyne
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
12
|
-
dependencies:
|
11
|
+
date: 2013-05-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: guard
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ! '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.8.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ! '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.8.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: nanoc
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 3.6.3
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 3.6.3
|
13
41
|
description: Automatically rebuilds nanoc sites
|
14
42
|
email: denis.defreyne@stoneship.org
|
15
43
|
executables: []
|
@@ -19,6 +47,7 @@ files:
|
|
19
47
|
- Gemfile
|
20
48
|
- Gemfile.lock
|
21
49
|
- LICENSE
|
50
|
+
- NEWS.md
|
22
51
|
- README.md
|
23
52
|
- lib/guard/nanoc/templates/Guardfile
|
24
53
|
- lib/guard/nanoc/version.rb
|