Skip to content

Commit

Permalink
Fixed Hash dividers to look better in RDoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimweirich committed May 11, 2009
1 parent ca13b30 commit 6baed2b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions lib/rake.rb
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def original_dir

end

# ##########################################################################
####################################################################
# Mixin for creating easily cloned objects.
#
module Cloneable
Expand Down Expand Up @@ -457,7 +457,7 @@ def to_s

module Rake

# #########################################################################
###########################################################################
# A Task is the basic unit of work in a Rakefile. Tasks have associated
# actions (possibly more than one) and a list of prerequisites. When
# invoked, a task will first ensure that all of its prerequisites have an
Expand Down Expand Up @@ -757,7 +757,7 @@ def scope_name(scope, task_name)
end # class Rake::Task


# #########################################################################
###########################################################################
# A FileTask is a task that includes time based dependencies. If any of a
# FileTask's prerequisites have a timestamp that is later than the file
# represented by this task, then the file must be rebuilt (using the
Expand Down Expand Up @@ -799,7 +799,7 @@ def scope_name(scope, task_name)
end
end # class Rake::FileTask

# #########################################################################
###########################################################################
# A FileCreationTask is a file task that when used as a dependency will be
# needed if and only if the file has not been created. Once created, it is
# not re-triggered if any of its dependencies are newer, nor does trigger
Expand All @@ -818,7 +818,7 @@ def timestamp
end
end

# #########################################################################
###########################################################################
# Same as a regular task, but the immediate prerequisites are done in
# parallel using Ruby threads.
#
Expand All @@ -833,7 +833,7 @@ def invoke_prerequisites(args, invocation_chain)
end
end # module Rake

# ###########################################################################
## ###########################################################################
# Task Definition Functions ...

# Declare a basic task.
Expand Down Expand Up @@ -952,7 +952,7 @@ def import(*fns)
end
end

# ###########################################################################
#############################################################################
# This a FileUtils extension that defines several additional commands to be
# added to the FileUtils utility functions.
#
Expand Down Expand Up @@ -1056,7 +1056,7 @@ def split_all(path)
end
end

# ###########################################################################
#############################################################################
# RakeFileUtils provides a custom version of the FileUtils methods that
# respond to the <tt>verbose</tt> and <tt>nowrite</tt> commands.
#
Expand Down Expand Up @@ -1187,7 +1187,7 @@ def rake_check_options(options, *optdecl)
extend self
end

# ###########################################################################
#############################################################################
# Include the FileUtils file manipulation functions in the top level module,
# but mark them private so that they don't unintentionally define methods on
# other objects.
Expand All @@ -1199,7 +1199,7 @@ def rake_check_options(options, *optdecl)
######################################################################
module Rake

# #########################################################################
###########################################################################
# A FileList is essentially an array with a few helper methods defined to
# make file manipulation a bit easier.
#
Expand Down Expand Up @@ -1607,7 +1607,7 @@ def each_dir_parent(dir) # :nodoc:
# Alias FileList to be available at the top level.
FileList = Rake::FileList

# ###########################################################################
#############################################################################
module Rake

# Default Rakefile loader used by +import+.
Expand All @@ -1634,7 +1634,7 @@ def to_s
EARLY = EarlyTime.instance
end # module Rake

# ###########################################################################
#############################################################################
# Extensions to time to allow comparisons with an early time class.
#
class Time
Expand Down

0 comments on commit 6baed2b

Please sign in to comment.