Class: YARD::Rake::YardocTask
- Inherits:
-
Rake::TaskLib
- Object
- Rake::TaskLib
- YARD::Rake::YardocTask
- Defined in:
- lib/yard/rake/yardoc_task.rb
Overview
The rake task to run CLI::Yardoc and generate documentation.
Instance Attribute Summary collapse
-
#after ⇒ Proc
Runs a
Proc
after the task. -
#before ⇒ Proc
Runs a
Proc
before the task. -
#files ⇒ Array<String>
The Ruby source files (and any extra documentation files separated by ‘-’) to process.
-
#name ⇒ String
The name of the task.
-
#options ⇒ Array<String>
Options to pass to CLI::Yardoc.
-
#verifier ⇒ Verifier, Proc
An optional Verifier to run against all objects being generated.
Instance Method Summary collapse
-
#define ⇒ void
protected
Defines the rake task.
-
#initialize(name = :yard) {|_self| ... } ⇒ YardocTask
constructor
Creates a new task with name
name
.
Constructor Details
#initialize(name = :yard) {|_self| ... } ⇒ YardocTask
Creates a new task with name name
.
46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/yard/rake/yardoc_task.rb', line 46 def initialize(name = :yard) @name = name @options = [] @files = [] yield self if block_given? self. += ENV['OPTS'].split(/[ ,]/) if ENV['OPTS'] self.files += ENV['FILES'].split(/[ ,]/) if ENV['FILES'] define end |
Instance Attribute Details
#after ⇒ Proc
Runs a Proc
after the task
32 33 34 |
# File 'lib/yard/rake/yardoc_task.rb', line 32 def after @after end |
#before ⇒ Proc
Runs a Proc
before the task
28 29 30 |
# File 'lib/yard/rake/yardoc_task.rb', line 28 def before @before end |
#files ⇒ Array<String>
The Ruby source files (and any extra documentation files separated by ‘-’) to process.
24 25 26 |
# File 'lib/yard/rake/yardoc_task.rb', line 24 def files @files end |
#name ⇒ String
The name of the task
11 12 13 |
# File 'lib/yard/rake/yardoc_task.rb', line 11 def name @name end |
#options ⇒ Array<String>
Options to pass to CLI::Yardoc
15 16 17 |
# File 'lib/yard/rake/yardoc_task.rb', line 15 def @options end |
#verifier ⇒ Verifier, Proc
Returns an optional Verifier to run against all objects being generated. Any object that the verifier returns false for will be excluded from documentation. This attribute can also be a lambda.
38 39 40 |
# File 'lib/yard/rake/yardoc_task.rb', line 38 def verifier @verifier end |
Instance Method Details
#define ⇒ void (protected)
This method returns an undefined value.
Defines the rake task
62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/yard/rake/yardoc_task.rb', line 62 def define desc "Generate YARD Documentation" task(name) do before.call if before.is_a?(Proc) yardoc = YARD::CLI::Yardoc.new yardoc.parse_arguments *( + files) yardoc.[:verifier] = verifier if verifier yardoc.run after.call if after.is_a?(Proc) end end |