Base class for any documentation provider. Defines most common functionality (things like @into@, @from@ and friends).
# File lib/buildr/core/doc.rb, line 57 def initialize(project) @project = project end
# File lib/buildr/core/doc.rb, line 45 def specify(options) @language = options[:language] @source_ext = options[:source_ext] end
# File lib/buildr/core/doc.rb, line 50 def to_sym @symbol ||= name.split('::').last.downcase.to_sym end