guard-ronn 0.1.0 → 0.1.1
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.
- data/CHANGELOG.md +6 -0
- data/README.md +13 -14
- data/lib/guard/ronn/templates/Guardfile +1 -0
- data/lib/guard/ronn/version.rb +1 -1
- metadata +14 -16
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
## Compatibility
|
6
6
|
|
7
|
-
* Compatible with Ronn 0.7.3.
|
7
|
+
* Compatible with Ronn ~> 0.7.3.
|
8
8
|
* Tested on Ruby 1.8.7, 1.9.2, REE, Rubinius & JRuby.
|
9
9
|
|
10
10
|
## Install
|
@@ -35,26 +35,24 @@ Add Guard definition to your `Guardfile` by running this command:
|
|
35
35
|
$ guard init ronn
|
36
36
|
```
|
37
37
|
|
38
|
-
Usage
|
39
|
-
-----
|
38
|
+
## Usage
|
40
39
|
|
41
40
|
Please read [Guard usage doc](https://github.com/guard/guard#readme).
|
42
41
|
|
43
|
-
By default, Guard::Ronn watch for files with the `.md` or `.markdown` extension in the `man` directory.
|
42
|
+
By default, Guard::Ronn watch for files with the `.ronn`, `.md` or `.markdown` extension in the `man` directory.
|
44
43
|
|
45
|
-
Guardfile
|
46
|
-
---------
|
44
|
+
## Guardfile
|
47
45
|
|
48
46
|
``` ruby
|
49
47
|
guard 'ronn' do
|
48
|
+
watch(%r{^man/.+\.ronn$})
|
50
49
|
watch(%r{^man/.+\.m(ark)?d(own)?$})
|
51
50
|
end
|
52
51
|
```
|
53
52
|
|
54
53
|
Please read [Guard doc](https://github.com/guard/guard#readme) for more information about the Guardfile DSL.
|
55
54
|
|
56
|
-
Options
|
57
|
-
-------
|
55
|
+
## Options
|
58
56
|
|
59
57
|
You can pass any of the standard Ronn CLI options using the `:cli` option:
|
60
58
|
|
@@ -71,20 +69,21 @@ end
|
|
71
69
|
:bundler => false # don't use "bundle exec" to run the Ronn command, default: true
|
72
70
|
```
|
73
71
|
|
74
|
-
|
75
|
-
|
72
|
+
## Bonus: reading gems' man pages from the `man` command
|
73
|
+
|
74
|
+
You can use the awesome [gem-man](https://github.com/defunkt/gem-man) by [defunkt](https://github.com/defunkt).
|
75
|
+
|
76
|
+
## Development
|
76
77
|
|
77
78
|
* Source hosted at [GitHub](https://github.com/guard/guard-ronn)
|
78
79
|
* Report issues/Questions/Feature requests on [GitHub Issues](https://github.com/guard/guard-ronn/issues)
|
79
80
|
|
80
81
|
Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make. Also, please update the README and the CHANGELOG.
|
81
82
|
|
82
|
-
Testing
|
83
|
-
-------
|
83
|
+
## Testing
|
84
84
|
|
85
85
|
`bundle exec guard` and `rake spec:portability` (to test against multiple rubies).
|
86
86
|
|
87
|
-
Author
|
88
|
-
------
|
87
|
+
## Author
|
89
88
|
|
90
89
|
[Rémy Coutable](https://github.com/rymai)
|
data/lib/guard/ronn/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-ronn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,12 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-08-
|
13
|
-
default_executable:
|
12
|
+
date: 2011-08-13 00:00:00.000000000Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: guard
|
17
|
-
requirement: &
|
16
|
+
requirement: &2152353700 !ruby/object:Gem::Requirement
|
18
17
|
none: false
|
19
18
|
requirements:
|
20
19
|
- - ! '>='
|
@@ -22,10 +21,10 @@ dependencies:
|
|
22
21
|
version: 0.2.2
|
23
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
|
-
version_requirements: *
|
24
|
+
version_requirements: *2152353700
|
26
25
|
- !ruby/object:Gem::Dependency
|
27
26
|
name: ronn
|
28
|
-
requirement: &
|
27
|
+
requirement: &2152353000 !ruby/object:Gem::Requirement
|
29
28
|
none: false
|
30
29
|
requirements:
|
31
30
|
- - ~>
|
@@ -33,10 +32,10 @@ dependencies:
|
|
33
32
|
version: 0.7.3
|
34
33
|
type: :runtime
|
35
34
|
prerelease: false
|
36
|
-
version_requirements: *
|
35
|
+
version_requirements: *2152353000
|
37
36
|
- !ruby/object:Gem::Dependency
|
38
37
|
name: bundler
|
39
|
-
requirement: &
|
38
|
+
requirement: &2152352340 !ruby/object:Gem::Requirement
|
40
39
|
none: false
|
41
40
|
requirements:
|
42
41
|
- - ~>
|
@@ -44,10 +43,10 @@ dependencies:
|
|
44
43
|
version: '1.0'
|
45
44
|
type: :development
|
46
45
|
prerelease: false
|
47
|
-
version_requirements: *
|
46
|
+
version_requirements: *2152352340
|
48
47
|
- !ruby/object:Gem::Dependency
|
49
48
|
name: rspec
|
50
|
-
requirement: &
|
49
|
+
requirement: &2152351340 !ruby/object:Gem::Requirement
|
51
50
|
none: false
|
52
51
|
requirements:
|
53
52
|
- - ~>
|
@@ -55,8 +54,8 @@ dependencies:
|
|
55
54
|
version: '2.5'
|
56
55
|
type: :development
|
57
56
|
prerelease: false
|
58
|
-
version_requirements: *
|
59
|
-
description: Guard::Ronn automatically builds
|
57
|
+
version_requirements: *2152351340
|
58
|
+
description: Guard::Ronn automatically builds manual pages.
|
60
59
|
email:
|
61
60
|
- rymai@rymai.me
|
62
61
|
executables: []
|
@@ -77,7 +76,6 @@ files:
|
|
77
76
|
- CHANGELOG.md
|
78
77
|
- LICENSE
|
79
78
|
- README.md
|
80
|
-
has_rdoc: true
|
81
79
|
homepage: http://rubygems.org/gems/guard-ronn
|
82
80
|
licenses: []
|
83
81
|
post_install_message:
|
@@ -95,10 +93,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
93
|
requirements:
|
96
94
|
- - ! '>='
|
97
95
|
- !ruby/object:Gem::Version
|
98
|
-
version:
|
96
|
+
version: '0'
|
99
97
|
requirements: []
|
100
|
-
rubyforge_project:
|
101
|
-
rubygems_version: 1.
|
98
|
+
rubyforge_project:
|
99
|
+
rubygems_version: 1.8.8
|
102
100
|
signing_key:
|
103
101
|
specification_version: 3
|
104
102
|
summary: Guard gem for Ronn.
|