GRAYBYTE WORDPRESS FILE MANAGER3760

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/alt/ruby20/lib64/ruby/2.0.0/rake/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/alt/ruby20/lib64/ruby/2.0.0/rake//rdoctask.rb
# rake/rdoctask is deprecated in favor of rdoc/task

if Rake.application
  Rake.application.deprecate('require \'rake/rdoctask\'', 'require \'rdoc/task\' (in RDoc 2.4.2+)', caller.first)
end

require 'rubygems'

begin
  gem 'rdoc'
  require 'rdoc'
  require 'rdoc/task'
rescue LoadError, Gem::LoadError
end

# :stopdoc:

if defined?(RDoc::Task) then
  module Rake
    RDocTask = RDoc::Task unless const_defined? :RDocTask
  end
else
  require 'rake'
  require 'rake/tasklib'

  module Rake

    # NOTE: Rake::RDocTask is deprecated in favor of RDoc:Task which is included
    # in RDoc 2.4.2+.  Use require 'rdoc/task' to require it.
    #
    # Create a documentation task that will generate the RDoc files for
    # a project.
    #
    # The RDocTask will create the following targets:
    #
    # [<b><em>rdoc</em></b>]
    #   Main task for this RDOC task.
    #
    # [<b>:clobber_<em>rdoc</em></b>]
    #   Delete all the rdoc files.  This target is automatically
    #   added to the main clobber target.
    #
    # [<b>:re<em>rdoc</em></b>]
    #   Rebuild the rdoc files from scratch, even if they are not out
    #   of date.
    #
    # Simple Example:
    #
    #   Rake::RDocTask.new do |rd|
    #     rd.main = "README.rdoc"
    #     rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
    #   end
    #
    # The +rd+ object passed to the block is an RDocTask object. See the
    # attributes list for the RDocTask class for available customization options.
    #
    # == Specifying different task names
    #
    # You may wish to give the task a different name, such as if you are
    # generating two sets of documentation.  For instance, if you want to have a
    # development set of documentation including private methods:
    #
    #   Rake::RDocTask.new(:rdoc_dev) do |rd|
    #     rd.main = "README.doc"
    #     rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
    #     rd.options << "--all"
    #   end
    #
    # The tasks would then be named :<em>rdoc_dev</em>, :clobber_<em>rdoc_dev</em>, and
    # :re<em>rdoc_dev</em>.
    #
    # If you wish to have completely different task names, then pass a Hash as
    # first argument. With the <tt>:rdoc</tt>, <tt>:clobber_rdoc</tt> and
    # <tt>:rerdoc</tt> options, you can customize the task names to your liking.
    # For example:
    #
    #   Rake::RDocTask.new(:rdoc => "rdoc", :clobber_rdoc => "rdoc:clean", :rerdoc => "rdoc:force")
    #
    # This will create the tasks <tt>:rdoc</tt>, <tt>:rdoc_clean</tt> and
    # <tt>:rdoc:force</tt>.
    #
    class RDocTask < TaskLib
      # Name of the main, top level task.  (default is :rdoc)
      attr_accessor :name

      # Name of directory to receive the html output files. (default is "html")
      attr_accessor :rdoc_dir

      # Title of RDoc documentation. (defaults to rdoc's default)
      attr_accessor :title

      # Name of file to be used as the main, top level file of the
      # RDoc. (default is none)
      attr_accessor :main

      # Name of template to be used by rdoc. (defaults to rdoc's default)
      attr_accessor :template

      # List of files to be included in the rdoc generation. (default is [])
      attr_accessor :rdoc_files

      # Additional list of options to be passed rdoc.  (default is [])
      attr_accessor :options

      # Whether to run the rdoc process as an external shell (default is false)
      attr_accessor :external

      attr_accessor :inline_source

      # Create an RDoc task with the given name. See the RDocTask class overview
      # for documentation.
      def initialize(name = :rdoc)  # :yield: self
        if name.is_a?(Hash)
          invalid_options = name.keys.map { |k| k.to_sym } - [:rdoc, :clobber_rdoc, :rerdoc]
          if !invalid_options.empty?
            raise ArgumentError, "Invalid option(s) passed to RDocTask.new: #{invalid_options.join(", ")}"
          end
        end

        @name = name
        @rdoc_files = Rake::FileList.new
        @rdoc_dir = 'html'
        @main = nil
        @title = nil
        @template = nil
        @external = false
        @inline_source = true
        @options = []
        yield self if block_given?
        define
      end

      # Create the tasks defined by this task lib.
      def define
        if rdoc_task_name != "rdoc"
          desc "Build the RDOC HTML Files"
        else
          desc "Build the #{rdoc_task_name} HTML Files"
        end
        task rdoc_task_name

        desc "Force a rebuild of the RDOC files"
        task rerdoc_task_name => [clobber_task_name, rdoc_task_name]

        desc "Remove rdoc products"
        task clobber_task_name do
          rm_r rdoc_dir rescue nil
        end

        task :clobber => [clobber_task_name]

        directory @rdoc_dir
        task rdoc_task_name => [rdoc_target]
        file rdoc_target => @rdoc_files + [Rake.application.rakefile] do
          rm_r @rdoc_dir rescue nil
          @before_running_rdoc.call if @before_running_rdoc
          args = option_list + @rdoc_files
          if @external
            argstring = args.join(' ')
            sh %{ruby -Ivendor vendor/rd #{argstring}}
          else
            require 'rdoc/rdoc'
            RDoc::RDoc.new.document(args)
          end
        end
        self
      end

      def option_list
        result = @options.dup
        result << "-o" << @rdoc_dir
        result << "--main" << quote(main) if main
        result << "--title" << quote(title) if title
        result << "-T" << quote(template) if template
        result << "--inline-source" if inline_source && !@options.include?("--inline-source") && !@options.include?("-S")
        result
      end

      def quote(str)
        if @external
          "'#{str}'"
        else
          str
        end
      end

      def option_string
        option_list.join(' ')
      end

      # The block passed to this method will be called just before running the
      # RDoc generator. It is allowed to modify RDocTask attributes inside the
      # block.
      def before_running_rdoc(&block)
        @before_running_rdoc = block
      end

      private

      def rdoc_target
        "#{rdoc_dir}/index.html"
      end

      def rdoc_task_name
        case name
        when Hash
          (name[:rdoc] || "rdoc").to_s
        else
          name.to_s
        end
      end

      def clobber_task_name
        case name
        when Hash
          (name[:clobber_rdoc] || "clobber_rdoc").to_s
        else
          "clobber_#{name}"
        end
      end

      def rerdoc_task_name
        case name
        when Hash
          (name[:rerdoc] || "rerdoc").to_s
        else
          "re#{name}"
        end
      end

    end
  end
end


[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 03 2024 22:53:08
root / root
0755
contrib
--
March 03 2024 22:53:08
root / linksafe
0755
ext
--
March 03 2024 22:53:08
root / linksafe
0755
lib
--
March 03 2024 22:53:08
root / linksafe
0755
loaders
--
March 03 2024 22:53:08
root / linksafe
0755
alt_system.rb
3.137 KB
June 23 2011 22:11:55
root / linksafe
0644
application.rb
21.27 KB
November 29 2012 19:16:46
root / linksafe
0644
backtrace.rb
0.607 KB
November 30 2012 03:21:06
root / linksafe
0644
classic_namespace.rb
0.398 KB
June 28 2011 02:45:29
root / linksafe
0644
clean.rb
1.001 KB
November 15 2012 21:59:37
root / linksafe
0644
cloneable.rb
0.471 KB
November 15 2012 21:59:37
root / linksafe
0644
default_loader.rb
0.16 KB
June 23 2011 22:11:55
root / linksafe
0644
dsl_definition.rb
5.019 KB
November 15 2012 21:59:37
root / linksafe
0644
early_time.rb
0.267 KB
June 23 2011 22:11:55
root / linksafe
0644
file_creation_task.rb
0.654 KB
June 23 2011 22:11:55
root / linksafe
0644
file_list.rb
11.496 KB
November 29 2012 19:16:46
root / linksafe
0644
file_task.rb
1.283 KB
June 23 2011 22:11:55
root / linksafe
0644
file_utils.rb
3.006 KB
December 06 2012 07:35:45
root / linksafe
0644
file_utils_ext.rb
4.104 KB
November 15 2012 21:59:37
root / linksafe
0644
gempackagetask.rb
0.276 KB
June 28 2011 02:45:29
root / linksafe
0644
invocation_chain.rb
0.939 KB
June 23 2011 22:11:55
root / linksafe
0644
invocation_exception_mixin.rb
0.421 KB
June 23 2011 22:11:55
root / linksafe
0644
multi_task.rb
0.308 KB
November 15 2012 21:59:37
root / linksafe
0644
name_space.rb
0.604 KB
June 23 2011 22:11:55
root / linksafe
0644
packagetask.rb
5.069 KB
June 23 2011 22:11:55
root / linksafe
0644
pathmap.rb
0.025 KB
June 23 2011 22:11:55
root / linksafe
0644
phony.rb
0.343 KB
November 15 2012 22:32:34
root / linksafe
0644
private_reader.rb
0.355 KB
November 15 2012 22:01:58
root / linksafe
0644
promise.rb
2.326 KB
November 15 2012 22:01:58
root / linksafe
0644
pseudo_status.rb
0.412 KB
June 23 2011 22:11:55
root / linksafe
0644
rake_module.rb
0.71 KB
November 15 2012 22:32:34
root / linksafe
0644
rake_test_loader.rb
0.333 KB
June 28 2011 02:45:29
root / linksafe
0644
rdoctask.rb
6.554 KB
November 15 2012 21:59:37
root / linksafe
0644
ruby182_test_unit_fix.rb
0.823 KB
November 22 2012 05:32:31
root / linksafe
0644
rule_recursion_overflow_error.rb
0.345 KB
June 23 2011 22:11:55
root / linksafe
0644
runtest.rb
0.457 KB
November 15 2012 22:32:34
root / linksafe
0644
task.rb
10.174 KB
November 29 2012 19:16:46
root / linksafe
0644
task_argument_error.rb
0.116 KB
June 23 2011 22:11:55
root / linksafe
0644
task_arguments.rb
1.629 KB
November 15 2012 21:59:37
root / linksafe
0644
task_manager.rb
8.781 KB
November 15 2012 21:59:37
root / linksafe
0644
tasklib.rb
0.566 KB
June 23 2011 22:11:55
root / linksafe
0644
testtask.rb
5.182 KB
November 15 2012 22:32:34
root / linksafe
0644
thread_history_display.rb
1.103 KB
November 15 2012 22:01:58
root / linksafe
0644
thread_pool.rb
4.668 KB
November 15 2012 22:01:58
root / linksafe
0644
trace_output.rb
0.477 KB
November 29 2012 19:16:46
root / linksafe
0644
version.rb
0.183 KB
December 21 2012 02:34:37
root / linksafe
0644
win32.rb
1.525 KB
June 23 2011 22:11:55
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF