guard-ronn 0.2.0 → 1.0
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 +15 -1
- data/README.md +29 -44
- data/lib/guard/ronn.rb +10 -9
- data/lib/guard/ronn/inspector.rb +4 -4
- data/lib/guard/ronn/notifier.rb +24 -0
- data/lib/guard/ronn/runner.rb +32 -25
- data/lib/guard/ronn/templates/Guardfile +1 -1
- data/lib/guard/ronn/version.rb +1 -1
- metadata +16 -21
- data/lib/guard/ronn.rbc +0 -746
- data/lib/guard/ronn/formatter.rb +0 -22
- data/lib/guard/ronn/formatter.rbc +0 -578
- data/lib/guard/ronn/inspector.rbc +0 -1036
- data/lib/guard/ronn/runner.rbc +0 -1011
- data/lib/guard/ronn/version.rbc +0 -203
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,20 @@
|
|
1
|
+
## git master
|
2
|
+
|
3
|
+
### Improvements
|
4
|
+
|
5
|
+
* Rename `Formatter` to `Notifier` and instantiate it in `Runner`'s constructor. ([@rymai][])
|
6
|
+
* Use an instance of Runner instead of calling a class method on it. ([@rymai][])
|
7
|
+
* Get rid of `autoload`. ([@rymai][])
|
8
|
+
|
9
|
+
## 1.0 - April 20, 2013
|
10
|
+
|
11
|
+
### Bug fix
|
12
|
+
|
13
|
+
* Ensure #run_all generates manual for Ronn files only!. ([@rymai][])
|
14
|
+
|
1
15
|
## 0.2.0 - June 3, 2012
|
2
16
|
|
3
|
-
### Change
|
17
|
+
### Change
|
4
18
|
|
5
19
|
* Updated for Guard 1.1 ([@rymai][])
|
6
20
|
|
data/README.md
CHANGED
@@ -1,37 +1,25 @@
|
|
1
|
-
# Guard::Ronn [](http://badge.fury.io/rb/guard-ronn) [](https://travis-ci.org/guard/guard-ronn) [](https://gemnasium.com/guard/guard-ronn) [](https://codeclimate.com/github/guard/guard-ronn) [](https://coveralls.io/r/guard/guard-ronn)
|
2
2
|
|
3
3
|
[Ronn](https://github.com/rtomayko/ronn) guard automatically build manuals when markdown source files are modified.
|
4
4
|
|
5
|
-
## Compatibility
|
6
|
-
|
7
5
|
* Compatible with Ronn ~> 0.7.3.
|
8
|
-
* Tested
|
6
|
+
* Tested against Ruby 1.8.7, 1.9.3, REE, Rubinius & JRuby.
|
9
7
|
|
10
8
|
## Install
|
11
9
|
|
12
|
-
Please be sure to have [Guard](https://github.com/guard/guard) installed before
|
13
|
-
|
14
|
-
If you're using Bundler, add it to your `Gemfile` (inside the `development` or `guard` group):
|
15
|
-
|
16
|
-
```ruby
|
17
|
-
gem 'guard-ronn'
|
18
|
-
```
|
19
|
-
|
20
|
-
and run:
|
21
|
-
|
22
|
-
```bash
|
23
|
-
$ bundle install
|
24
|
-
```
|
10
|
+
Please be sure to have [Guard](https://github.com/guard/guard) installed before continuing.
|
25
11
|
|
26
|
-
|
12
|
+
Add the gem to your Gemfile (inside the `:development` or `:tool` group):
|
27
13
|
|
28
|
-
```
|
29
|
-
|
14
|
+
``` ruby
|
15
|
+
group :development do
|
16
|
+
gem 'guard-ronn'
|
17
|
+
end
|
30
18
|
```
|
31
19
|
|
32
|
-
Add
|
20
|
+
Add guard definition to your Guardfile by running this command:
|
33
21
|
|
34
|
-
```bash
|
22
|
+
``` bash
|
35
23
|
$ guard init ronn
|
36
24
|
```
|
37
25
|
|
@@ -43,14 +31,9 @@ By default, Guard::Ronn watch for files with the `.ronn`, `.md` or `.markdown` e
|
|
43
31
|
|
44
32
|
## Guardfile
|
45
33
|
|
46
|
-
|
47
|
-
guard 'ronn' do
|
48
|
-
watch(%r{^man/.+\.ronn$})
|
49
|
-
watch(%r{^man/.+\.m(ark)?d(own)?$})
|
50
|
-
end
|
51
|
-
```
|
34
|
+
See the [template Guardfile](https://github.com/guard/guard-ronn/blob/master/lib/guard/ronn/templates/Guardfile) for some examples.
|
52
35
|
|
53
|
-
Please read [Guard
|
36
|
+
Please read the [Guard documentation](https://github.com/guard/guard#readme) for more info about the Guardfile DSL.
|
54
37
|
|
55
38
|
## Options
|
56
39
|
|
@@ -62,10 +45,10 @@ guard 'ronn', :cli => "--html" do
|
|
62
45
|
end
|
63
46
|
```
|
64
47
|
|
65
|
-
###
|
48
|
+
### Available options
|
66
49
|
|
67
50
|
``` ruby
|
68
|
-
:cli =>
|
51
|
+
:cli => '--html' # pass arbitrary Ronn CLI arguments, default: ''
|
69
52
|
:bundler => false # don't use "bundle exec" to run the Ronn command, default: true
|
70
53
|
```
|
71
54
|
|
@@ -75,23 +58,25 @@ You can use the awesome [gem-man](https://github.com/defunkt/gem-man) by [defunk
|
|
75
58
|
|
76
59
|
## Development
|
77
60
|
|
78
|
-
*
|
79
|
-
*
|
61
|
+
* Documentation hosted at [RubyDoc](http://rubydoc.info/github/guard/guard-ronn/master/frames).
|
62
|
+
* Source hosted at [GitHub](https://github.com/guard/guard-ronn).
|
80
63
|
|
81
|
-
Pull requests are very welcome! Please try to follow these simple
|
64
|
+
Pull requests are very welcome! Please try to follow these simple rules if applicable:
|
82
65
|
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
-
|
66
|
+
* Please create a topic branch for every separate change you make.
|
67
|
+
* Make sure your patches are well tested. All specs must pass on [Travis CI](https://travis-ci.org/guard/guard-ronn).
|
68
|
+
* Update the [Yard](http://yardoc.org/) documentation.
|
69
|
+
* Update the [README](https://github.com/guard/guard-ronn/blob/master/README.md).
|
70
|
+
* Update the [CHANGELOG](https://github.com/guard/guard-ronn/blob/master/CHANGELOG.md) for noteworthy changes (don't forget to run `bundle exec pimpmychangelog` and watch the magic happen)!
|
71
|
+
* Please **do not change** the version number.
|
88
72
|
|
89
|
-
For questions please join us
|
73
|
+
For questions please join us in our [Google group](http://groups.google.com/group/guard-dev) or on
|
74
|
+
`#guard` (irc.freenode.net).
|
90
75
|
|
91
|
-
##
|
76
|
+
## Author
|
92
77
|
|
93
|
-
|
78
|
+
[Rémy Coutable](https://github.com/rymai) ([@rymai](http://twitter.com/rymai), [rymai.me](http://rymai.me))
|
94
79
|
|
95
|
-
##
|
80
|
+
## Contributors
|
96
81
|
|
97
|
-
|
82
|
+
https://github.com/guard/guard-ronn/contributors
|
data/lib/guard/ronn.rb
CHANGED
@@ -4,14 +4,15 @@ require 'ronn'
|
|
4
4
|
|
5
5
|
module Guard
|
6
6
|
class Ronn < Guard
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
require 'guard/ronn/runner'
|
8
|
+
require 'guard/ronn/inspector'
|
9
|
+
require 'guard/ronn/notifier'
|
10
10
|
|
11
|
-
|
11
|
+
attr_reader :runner
|
12
|
+
|
13
|
+
def initialize(watchers = [], options = {})
|
12
14
|
super
|
13
|
-
@
|
14
|
-
}.merge(options)
|
15
|
+
@runner = Runner.new(@options)
|
15
16
|
end
|
16
17
|
|
17
18
|
# Call once when guard starts
|
@@ -20,11 +21,11 @@ module Guard
|
|
20
21
|
end
|
21
22
|
|
22
23
|
def run_all
|
23
|
-
|
24
|
+
@runner.run(Inspector.ronn_files, :message => 'Building all manuals')
|
24
25
|
end
|
25
26
|
|
26
|
-
def
|
27
|
-
|
27
|
+
def run_on_changes(paths)
|
28
|
+
@runner.run(Inspector.clean(paths))
|
28
29
|
end
|
29
30
|
|
30
31
|
end
|
data/lib/guard/ronn/inspector.rb
CHANGED
@@ -11,16 +11,16 @@ module Guard
|
|
11
11
|
paths.reject { |p| included_in_other_path?(p, paths) }
|
12
12
|
end
|
13
13
|
|
14
|
+
def ronn_files
|
15
|
+
@ronn_files ||= Dir['man/*.{ronn,md,markdown}']
|
16
|
+
end
|
17
|
+
|
14
18
|
private
|
15
19
|
|
16
20
|
def ronn_file?(path)
|
17
21
|
ronn_files.include?(path)
|
18
22
|
end
|
19
23
|
|
20
|
-
def ronn_files
|
21
|
-
@ronn_files ||= Dir["man/*.{ronn,md,markdown}"]
|
22
|
-
end
|
23
|
-
|
24
24
|
def clear_ronn_files_list_after
|
25
25
|
yield
|
26
26
|
@ronn_files = nil
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Guard
|
2
|
+
class Ronn
|
3
|
+
class Notifier
|
4
|
+
|
5
|
+
def notify(result)
|
6
|
+
@result = result
|
7
|
+
|
8
|
+
::Guard::Notifier.notify(guard_message, :title => 'Ronn results',
|
9
|
+
:image => guard_image)
|
10
|
+
end
|
11
|
+
|
12
|
+
private
|
13
|
+
|
14
|
+
def guard_message
|
15
|
+
@result ? 'Manual generation done!' : 'Manual generation failed!'
|
16
|
+
end
|
17
|
+
|
18
|
+
def guard_image
|
19
|
+
@result ? :success : :failed
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/guard/ronn/runner.rb
CHANGED
@@ -1,36 +1,43 @@
|
|
1
|
-
require "#{File.dirname(__FILE__)}/formatter"
|
2
|
-
|
3
1
|
module Guard
|
4
2
|
class Ronn
|
5
|
-
|
6
|
-
class << self
|
7
|
-
include Formatter
|
8
|
-
|
9
|
-
def run(paths, options={})
|
10
|
-
return false if paths.empty?
|
11
|
-
message = options[:message] || "Running: #{paths.join(' ')}"
|
12
|
-
UI.info(message, :reset => true)
|
13
|
-
success = system(ronn_command(paths, options))
|
14
|
-
notify(success)
|
15
|
-
end
|
3
|
+
class Runner
|
16
4
|
|
17
|
-
|
5
|
+
attr_reader :notifier
|
6
|
+
|
7
|
+
def initialize(options = {})
|
8
|
+
@options = options
|
9
|
+
@notifier = Notifier.new
|
10
|
+
end
|
18
11
|
|
19
|
-
|
20
|
-
|
21
|
-
cmd_parts << "bundle exec" if bundler? && options[:bundler] != false
|
22
|
-
cmd_parts << "ronn"
|
23
|
-
cmd_parts << options[:cli] if options[:cli]
|
24
|
-
cmd_parts << paths.join(' ')
|
12
|
+
def run(paths, options = {})
|
13
|
+
return false if paths.empty?
|
25
14
|
|
26
|
-
|
27
|
-
|
15
|
+
options = @options.merge(options)
|
16
|
+
message = options[:message] || "Running: #{paths.join(' ')}"
|
28
17
|
|
29
|
-
|
30
|
-
@bundler ||= File.exist?("#{Dir.pwd}/Gemfile")
|
31
|
-
end
|
18
|
+
::Guard::UI.info(message, :reset => true)
|
32
19
|
|
20
|
+
result = system(ronn_command(paths, options))
|
21
|
+
|
22
|
+
@notifier.notify(result)
|
33
23
|
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def ronn_command(paths, options = {})
|
28
|
+
cmd_parts = []
|
29
|
+
cmd_parts << 'bundle exec' if bundler? && options[:bundler] != false
|
30
|
+
cmd_parts << 'ronn'
|
31
|
+
cmd_parts << options[:cli] if options[:cli]
|
32
|
+
cmd_parts << paths.join(' ')
|
33
|
+
|
34
|
+
cmd_parts.join(' ')
|
35
|
+
end
|
36
|
+
|
37
|
+
def bundler?
|
38
|
+
@bundler ||= File.exist?("#{Dir.pwd}/Gemfile")
|
39
|
+
end
|
40
|
+
|
34
41
|
end
|
35
42
|
end
|
36
43
|
end
|
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:
|
4
|
+
version: '1.0'
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,24 +9,24 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-04-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: guard
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.
|
21
|
+
version: '1.8'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.
|
29
|
+
version: '1.8'
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: ronn
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
requirements:
|
35
35
|
- - ~>
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version: 0.7
|
37
|
+
version: '0.7'
|
38
38
|
type: :runtime
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,7 +42,7 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ~>
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: 0.7
|
45
|
+
version: '0.7'
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: bundler
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ~>
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '1.
|
53
|
+
version: '1.3'
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -58,7 +58,7 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '1.
|
61
|
+
version: '1.3'
|
62
62
|
- !ruby/object:Gem::Dependency
|
63
63
|
name: rspec
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
requirements:
|
67
67
|
- - ~>
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '2.
|
69
|
+
version: '2.13'
|
70
70
|
type: :development
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -74,7 +74,7 @@ dependencies:
|
|
74
74
|
requirements:
|
75
75
|
- - ~>
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version: '2.
|
77
|
+
version: '2.13'
|
78
78
|
description: Guard::Ronn automatically builds manual pages.
|
79
79
|
email:
|
80
80
|
- remy@rymai.me
|
@@ -82,17 +82,12 @@ executables: []
|
|
82
82
|
extensions: []
|
83
83
|
extra_rdoc_files: []
|
84
84
|
files:
|
85
|
-
- lib/guard/ronn/formatter.rb
|
86
|
-
- lib/guard/ronn/formatter.rbc
|
87
85
|
- lib/guard/ronn/inspector.rb
|
88
|
-
- lib/guard/ronn/
|
86
|
+
- lib/guard/ronn/notifier.rb
|
89
87
|
- lib/guard/ronn/runner.rb
|
90
|
-
- lib/guard/ronn/runner.rbc
|
91
88
|
- lib/guard/ronn/templates/Guardfile
|
92
89
|
- lib/guard/ronn/version.rb
|
93
|
-
- lib/guard/ronn/version.rbc
|
94
90
|
- lib/guard/ronn.rb
|
95
|
-
- lib/guard/ronn.rbc
|
96
91
|
- CHANGELOG.md
|
97
92
|
- LICENSE
|
98
93
|
- README.md
|
@@ -110,7 +105,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
110
105
|
version: '0'
|
111
106
|
segments:
|
112
107
|
- 0
|
113
|
-
hash:
|
108
|
+
hash: 2627442652966117863
|
114
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
115
110
|
none: false
|
116
111
|
requirements:
|
@@ -119,10 +114,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
114
|
version: '0'
|
120
115
|
segments:
|
121
116
|
- 0
|
122
|
-
hash:
|
117
|
+
hash: 2627442652966117863
|
123
118
|
requirements: []
|
124
119
|
rubyforge_project:
|
125
|
-
rubygems_version: 1.8.
|
120
|
+
rubygems_version: 1.8.25
|
126
121
|
signing_key:
|
127
122
|
specification_version: 3
|
128
123
|
summary: Guard gem for Ronn.
|
data/lib/guard/ronn.rbc
DELETED
@@ -1,746 +0,0 @@
|
|
1
|
-
!RBIX
|
2
|
-
14325050222978361568
|
3
|
-
x
|
4
|
-
M
|
5
|
-
1
|
6
|
-
n
|
7
|
-
n
|
8
|
-
x
|
9
|
-
10
|
10
|
-
__script__
|
11
|
-
i
|
12
|
-
55
|
13
|
-
5
|
14
|
-
7
|
15
|
-
0
|
16
|
-
64
|
17
|
-
47
|
18
|
-
49
|
19
|
-
1
|
20
|
-
1
|
21
|
-
15
|
22
|
-
5
|
23
|
-
7
|
24
|
-
2
|
25
|
-
64
|
26
|
-
47
|
27
|
-
49
|
28
|
-
1
|
29
|
-
1
|
30
|
-
15
|
31
|
-
5
|
32
|
-
7
|
33
|
-
3
|
34
|
-
64
|
35
|
-
47
|
36
|
-
49
|
37
|
-
1
|
38
|
-
1
|
39
|
-
15
|
40
|
-
99
|
41
|
-
7
|
42
|
-
4
|
43
|
-
65
|
44
|
-
49
|
45
|
-
5
|
46
|
-
2
|
47
|
-
13
|
48
|
-
99
|
49
|
-
12
|
50
|
-
7
|
51
|
-
6
|
52
|
-
12
|
53
|
-
7
|
54
|
-
7
|
55
|
-
12
|
56
|
-
65
|
57
|
-
12
|
58
|
-
49
|
59
|
-
8
|
60
|
-
4
|
61
|
-
15
|
62
|
-
49
|
63
|
-
6
|
64
|
-
0
|
65
|
-
15
|
66
|
-
2
|
67
|
-
11
|
68
|
-
I
|
69
|
-
6
|
70
|
-
I
|
71
|
-
0
|
72
|
-
I
|
73
|
-
0
|
74
|
-
I
|
75
|
-
0
|
76
|
-
n
|
77
|
-
p
|
78
|
-
9
|
79
|
-
s
|
80
|
-
5
|
81
|
-
guard
|
82
|
-
x
|
83
|
-
7
|
84
|
-
require
|
85
|
-
s
|
86
|
-
11
|
87
|
-
guard/guard
|
88
|
-
s
|
89
|
-
4
|
90
|
-
ronn
|
91
|
-
x
|
92
|
-
5
|
93
|
-
Guard
|
94
|
-
x
|
95
|
-
11
|
96
|
-
open_module
|
97
|
-
x
|
98
|
-
15
|
99
|
-
__module_init__
|
100
|
-
M
|
101
|
-
1
|
102
|
-
n
|
103
|
-
n
|
104
|
-
x
|
105
|
-
5
|
106
|
-
Guard
|
107
|
-
i
|
108
|
-
31
|
109
|
-
5
|
110
|
-
66
|
111
|
-
99
|
112
|
-
7
|
113
|
-
0
|
114
|
-
45
|
115
|
-
1
|
116
|
-
2
|
117
|
-
65
|
118
|
-
49
|
119
|
-
3
|
120
|
-
3
|
121
|
-
13
|
122
|
-
99
|
123
|
-
12
|
124
|
-
7
|
125
|
-
4
|
126
|
-
12
|
127
|
-
7
|
128
|
-
5
|
129
|
-
12
|
130
|
-
65
|
131
|
-
12
|
132
|
-
49
|
133
|
-
6
|
134
|
-
4
|
135
|
-
15
|
136
|
-
49
|
137
|
-
4
|
138
|
-
0
|
139
|
-
11
|
140
|
-
I
|
141
|
-
6
|
142
|
-
I
|
143
|
-
0
|
144
|
-
I
|
145
|
-
0
|
146
|
-
I
|
147
|
-
0
|
148
|
-
n
|
149
|
-
p
|
150
|
-
7
|
151
|
-
x
|
152
|
-
4
|
153
|
-
Ronn
|
154
|
-
x
|
155
|
-
5
|
156
|
-
Guard
|
157
|
-
n
|
158
|
-
x
|
159
|
-
10
|
160
|
-
open_class
|
161
|
-
x
|
162
|
-
14
|
163
|
-
__class_init__
|
164
|
-
M
|
165
|
-
1
|
166
|
-
n
|
167
|
-
n
|
168
|
-
x
|
169
|
-
4
|
170
|
-
Ronn
|
171
|
-
i
|
172
|
-
91
|
173
|
-
5
|
174
|
-
66
|
175
|
-
5
|
176
|
-
7
|
177
|
-
0
|
178
|
-
7
|
179
|
-
1
|
180
|
-
64
|
181
|
-
47
|
182
|
-
49
|
183
|
-
2
|
184
|
-
2
|
185
|
-
15
|
186
|
-
5
|
187
|
-
7
|
188
|
-
3
|
189
|
-
7
|
190
|
-
4
|
191
|
-
64
|
192
|
-
47
|
193
|
-
49
|
194
|
-
2
|
195
|
-
2
|
196
|
-
15
|
197
|
-
5
|
198
|
-
7
|
199
|
-
5
|
200
|
-
7
|
201
|
-
6
|
202
|
-
64
|
203
|
-
47
|
204
|
-
49
|
205
|
-
2
|
206
|
-
2
|
207
|
-
15
|
208
|
-
99
|
209
|
-
7
|
210
|
-
7
|
211
|
-
7
|
212
|
-
8
|
213
|
-
65
|
214
|
-
67
|
215
|
-
49
|
216
|
-
9
|
217
|
-
0
|
218
|
-
49
|
219
|
-
10
|
220
|
-
4
|
221
|
-
15
|
222
|
-
99
|
223
|
-
7
|
224
|
-
11
|
225
|
-
7
|
226
|
-
12
|
227
|
-
65
|
228
|
-
67
|
229
|
-
49
|
230
|
-
9
|
231
|
-
0
|
232
|
-
49
|
233
|
-
10
|
234
|
-
4
|
235
|
-
15
|
236
|
-
99
|
237
|
-
7
|
238
|
-
13
|
239
|
-
7
|
240
|
-
14
|
241
|
-
65
|
242
|
-
67
|
243
|
-
49
|
244
|
-
9
|
245
|
-
0
|
246
|
-
49
|
247
|
-
10
|
248
|
-
4
|
249
|
-
15
|
250
|
-
99
|
251
|
-
7
|
252
|
-
15
|
253
|
-
7
|
254
|
-
16
|
255
|
-
65
|
256
|
-
67
|
257
|
-
49
|
258
|
-
9
|
259
|
-
0
|
260
|
-
49
|
261
|
-
10
|
262
|
-
4
|
263
|
-
11
|
264
|
-
I
|
265
|
-
5
|
266
|
-
I
|
267
|
-
0
|
268
|
-
I
|
269
|
-
0
|
270
|
-
I
|
271
|
-
0
|
272
|
-
n
|
273
|
-
p
|
274
|
-
17
|
275
|
-
x
|
276
|
-
6
|
277
|
-
Runner
|
278
|
-
s
|
279
|
-
17
|
280
|
-
guard/ronn/runner
|
281
|
-
x
|
282
|
-
8
|
283
|
-
autoload
|
284
|
-
x
|
285
|
-
9
|
286
|
-
Inspector
|
287
|
-
s
|
288
|
-
20
|
289
|
-
guard/ronn/inspector
|
290
|
-
x
|
291
|
-
9
|
292
|
-
Formatter
|
293
|
-
s
|
294
|
-
20
|
295
|
-
guard/ronn/formatter
|
296
|
-
x
|
297
|
-
10
|
298
|
-
initialize
|
299
|
-
M
|
300
|
-
1
|
301
|
-
n
|
302
|
-
n
|
303
|
-
x
|
304
|
-
10
|
305
|
-
initialize
|
306
|
-
i
|
307
|
-
42
|
308
|
-
23
|
309
|
-
0
|
310
|
-
10
|
311
|
-
9
|
312
|
-
35
|
313
|
-
0
|
314
|
-
19
|
315
|
-
0
|
316
|
-
15
|
317
|
-
23
|
318
|
-
1
|
319
|
-
10
|
320
|
-
23
|
321
|
-
44
|
322
|
-
43
|
323
|
-
0
|
324
|
-
78
|
325
|
-
49
|
326
|
-
1
|
327
|
-
1
|
328
|
-
19
|
329
|
-
1
|
330
|
-
15
|
331
|
-
54
|
332
|
-
89
|
333
|
-
2
|
334
|
-
15
|
335
|
-
44
|
336
|
-
43
|
337
|
-
0
|
338
|
-
78
|
339
|
-
49
|
340
|
-
1
|
341
|
-
1
|
342
|
-
20
|
343
|
-
1
|
344
|
-
49
|
345
|
-
3
|
346
|
-
1
|
347
|
-
38
|
348
|
-
4
|
349
|
-
11
|
350
|
-
I
|
351
|
-
4
|
352
|
-
I
|
353
|
-
2
|
354
|
-
I
|
355
|
-
0
|
356
|
-
I
|
357
|
-
2
|
358
|
-
n
|
359
|
-
p
|
360
|
-
5
|
361
|
-
x
|
362
|
-
4
|
363
|
-
Hash
|
364
|
-
x
|
365
|
-
16
|
366
|
-
new_from_literal
|
367
|
-
x
|
368
|
-
10
|
369
|
-
initialize
|
370
|
-
x
|
371
|
-
5
|
372
|
-
merge
|
373
|
-
x
|
374
|
-
8
|
375
|
-
@options
|
376
|
-
p
|
377
|
-
9
|
378
|
-
I
|
379
|
-
-1
|
380
|
-
I
|
381
|
-
b
|
382
|
-
I
|
383
|
-
17
|
384
|
-
I
|
385
|
-
c
|
386
|
-
I
|
387
|
-
1b
|
388
|
-
I
|
389
|
-
e
|
390
|
-
I
|
391
|
-
27
|
392
|
-
I
|
393
|
-
d
|
394
|
-
I
|
395
|
-
2a
|
396
|
-
x
|
397
|
-
68
|
398
|
-
/Users/remy/Development/Ruby/Gems/guard/guard-ronn/lib/guard/ronn.rb
|
399
|
-
p
|
400
|
-
2
|
401
|
-
x
|
402
|
-
8
|
403
|
-
watchers
|
404
|
-
x
|
405
|
-
7
|
406
|
-
options
|
407
|
-
x
|
408
|
-
17
|
409
|
-
method_visibility
|
410
|
-
x
|
411
|
-
15
|
412
|
-
add_defn_method
|
413
|
-
x
|
414
|
-
5
|
415
|
-
start
|
416
|
-
M
|
417
|
-
1
|
418
|
-
n
|
419
|
-
n
|
420
|
-
x
|
421
|
-
5
|
422
|
-
start
|
423
|
-
i
|
424
|
-
22
|
425
|
-
45
|
426
|
-
0
|
427
|
-
1
|
428
|
-
7
|
429
|
-
2
|
430
|
-
44
|
431
|
-
43
|
432
|
-
3
|
433
|
-
49
|
434
|
-
4
|
435
|
-
0
|
436
|
-
47
|
437
|
-
101
|
438
|
-
5
|
439
|
-
7
|
440
|
-
6
|
441
|
-
63
|
442
|
-
3
|
443
|
-
49
|
444
|
-
7
|
445
|
-
1
|
446
|
-
11
|
447
|
-
I
|
448
|
-
4
|
449
|
-
I
|
450
|
-
0
|
451
|
-
I
|
452
|
-
0
|
453
|
-
I
|
454
|
-
0
|
455
|
-
n
|
456
|
-
p
|
457
|
-
8
|
458
|
-
x
|
459
|
-
2
|
460
|
-
UI
|
461
|
-
n
|
462
|
-
s
|
463
|
-
34
|
464
|
-
Guard::Ronn is running, with Ronn
|
465
|
-
x
|
466
|
-
4
|
467
|
-
Ronn
|
468
|
-
x
|
469
|
-
7
|
470
|
-
version
|
471
|
-
x
|
472
|
-
4
|
473
|
-
to_s
|
474
|
-
s
|
475
|
-
1
|
476
|
-
!
|
477
|
-
x
|
478
|
-
4
|
479
|
-
info
|
480
|
-
p
|
481
|
-
5
|
482
|
-
I
|
483
|
-
-1
|
484
|
-
I
|
485
|
-
12
|
486
|
-
I
|
487
|
-
0
|
488
|
-
I
|
489
|
-
13
|
490
|
-
I
|
491
|
-
16
|
492
|
-
x
|
493
|
-
68
|
494
|
-
/Users/remy/Development/Ruby/Gems/guard/guard-ronn/lib/guard/ronn.rb
|
495
|
-
p
|
496
|
-
0
|
497
|
-
x
|
498
|
-
7
|
499
|
-
run_all
|
500
|
-
M
|
501
|
-
1
|
502
|
-
n
|
503
|
-
n
|
504
|
-
x
|
505
|
-
7
|
506
|
-
run_all
|
507
|
-
i
|
508
|
-
34
|
509
|
-
45
|
510
|
-
0
|
511
|
-
1
|
512
|
-
7
|
513
|
-
2
|
514
|
-
64
|
515
|
-
35
|
516
|
-
1
|
517
|
-
39
|
518
|
-
3
|
519
|
-
44
|
520
|
-
43
|
521
|
-
4
|
522
|
-
79
|
523
|
-
49
|
524
|
-
5
|
525
|
-
1
|
526
|
-
13
|
527
|
-
7
|
528
|
-
6
|
529
|
-
7
|
530
|
-
7
|
531
|
-
64
|
532
|
-
49
|
533
|
-
8
|
534
|
-
2
|
535
|
-
15
|
536
|
-
49
|
537
|
-
9
|
538
|
-
1
|
539
|
-
49
|
540
|
-
10
|
541
|
-
2
|
542
|
-
11
|
543
|
-
I
|
544
|
-
7
|
545
|
-
I
|
546
|
-
0
|
547
|
-
I
|
548
|
-
0
|
549
|
-
I
|
550
|
-
0
|
551
|
-
n
|
552
|
-
p
|
553
|
-
11
|
554
|
-
x
|
555
|
-
6
|
556
|
-
Runner
|
557
|
-
n
|
558
|
-
s
|
559
|
-
5
|
560
|
-
man/*
|
561
|
-
x
|
562
|
-
8
|
563
|
-
@options
|
564
|
-
x
|
565
|
-
4
|
566
|
-
Hash
|
567
|
-
x
|
568
|
-
16
|
569
|
-
new_from_literal
|
570
|
-
x
|
571
|
-
7
|
572
|
-
message
|
573
|
-
s
|
574
|
-
20
|
575
|
-
Building all manuals
|
576
|
-
x
|
577
|
-
3
|
578
|
-
[]=
|
579
|
-
x
|
580
|
-
5
|
581
|
-
merge
|
582
|
-
x
|
583
|
-
3
|
584
|
-
run
|
585
|
-
p
|
586
|
-
5
|
587
|
-
I
|
588
|
-
-1
|
589
|
-
I
|
590
|
-
16
|
591
|
-
I
|
592
|
-
0
|
593
|
-
I
|
594
|
-
17
|
595
|
-
I
|
596
|
-
22
|
597
|
-
x
|
598
|
-
68
|
599
|
-
/Users/remy/Development/Ruby/Gems/guard/guard-ronn/lib/guard/ronn.rb
|
600
|
-
p
|
601
|
-
0
|
602
|
-
x
|
603
|
-
13
|
604
|
-
run_on_change
|
605
|
-
M
|
606
|
-
1
|
607
|
-
n
|
608
|
-
n
|
609
|
-
x
|
610
|
-
13
|
611
|
-
run_on_change
|
612
|
-
i
|
613
|
-
11
|
614
|
-
45
|
615
|
-
0
|
616
|
-
1
|
617
|
-
20
|
618
|
-
0
|
619
|
-
39
|
620
|
-
2
|
621
|
-
49
|
622
|
-
3
|
623
|
-
2
|
624
|
-
11
|
625
|
-
I
|
626
|
-
4
|
627
|
-
I
|
628
|
-
1
|
629
|
-
I
|
630
|
-
1
|
631
|
-
I
|
632
|
-
1
|
633
|
-
n
|
634
|
-
p
|
635
|
-
4
|
636
|
-
x
|
637
|
-
6
|
638
|
-
Runner
|
639
|
-
n
|
640
|
-
x
|
641
|
-
8
|
642
|
-
@options
|
643
|
-
x
|
644
|
-
3
|
645
|
-
run
|
646
|
-
p
|
647
|
-
5
|
648
|
-
I
|
649
|
-
-1
|
650
|
-
I
|
651
|
-
1a
|
652
|
-
I
|
653
|
-
0
|
654
|
-
I
|
655
|
-
1b
|
656
|
-
I
|
657
|
-
b
|
658
|
-
x
|
659
|
-
68
|
660
|
-
/Users/remy/Development/Ruby/Gems/guard/guard-ronn/lib/guard/ronn.rb
|
661
|
-
p
|
662
|
-
1
|
663
|
-
x
|
664
|
-
5
|
665
|
-
paths
|
666
|
-
p
|
667
|
-
15
|
668
|
-
I
|
669
|
-
2
|
670
|
-
I
|
671
|
-
7
|
672
|
-
I
|
673
|
-
d
|
674
|
-
I
|
675
|
-
8
|
676
|
-
I
|
677
|
-
18
|
678
|
-
I
|
679
|
-
9
|
680
|
-
I
|
681
|
-
23
|
682
|
-
I
|
683
|
-
b
|
684
|
-
I
|
685
|
-
31
|
686
|
-
I
|
687
|
-
12
|
688
|
-
I
|
689
|
-
3f
|
690
|
-
I
|
691
|
-
16
|
692
|
-
I
|
693
|
-
4d
|
694
|
-
I
|
695
|
-
1a
|
696
|
-
I
|
697
|
-
5b
|
698
|
-
x
|
699
|
-
68
|
700
|
-
/Users/remy/Development/Ruby/Gems/guard/guard-ronn/lib/guard/ronn.rb
|
701
|
-
p
|
702
|
-
0
|
703
|
-
x
|
704
|
-
13
|
705
|
-
attach_method
|
706
|
-
p
|
707
|
-
3
|
708
|
-
I
|
709
|
-
2
|
710
|
-
I
|
711
|
-
6
|
712
|
-
I
|
713
|
-
1f
|
714
|
-
x
|
715
|
-
68
|
716
|
-
/Users/remy/Development/Ruby/Gems/guard/guard-ronn/lib/guard/ronn.rb
|
717
|
-
p
|
718
|
-
0
|
719
|
-
x
|
720
|
-
13
|
721
|
-
attach_method
|
722
|
-
p
|
723
|
-
9
|
724
|
-
I
|
725
|
-
0
|
726
|
-
I
|
727
|
-
1
|
728
|
-
I
|
729
|
-
9
|
730
|
-
I
|
731
|
-
2
|
732
|
-
I
|
733
|
-
12
|
734
|
-
I
|
735
|
-
3
|
736
|
-
I
|
737
|
-
1b
|
738
|
-
I
|
739
|
-
5
|
740
|
-
I
|
741
|
-
37
|
742
|
-
x
|
743
|
-
68
|
744
|
-
/Users/remy/Development/Ruby/Gems/guard/guard-ronn/lib/guard/ronn.rb
|
745
|
-
p
|
746
|
-
0
|