Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rdoc improvements #293

Merged
merged 3 commits into from Nov 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/rake/application.rb
Expand Up @@ -797,7 +797,7 @@ def rakefile_location(backtrace=caller) # :nodoc:
backtrace.find { |str| str =~ re } || ""
end

def set_default_options
def set_default_options # :nodoc:
options.always_multitask = false
options.backtrace = false
options.build_all = false
Expand Down
6 changes: 3 additions & 3 deletions lib/rake/dsl_definition.rb
Expand Up @@ -26,9 +26,9 @@ module DSL
private

# :call-seq:
# task task_name
# task task_name: dependencies
# task task_name, arguments => dependencies
# task(task_name)
# task(task_name: dependencies)
# task(task_name, arguments => dependencies)
#
# Declare a basic task. The +task_name+ is always the first argument. If
# the task name contains a ":" it is defined in that namespace.
Expand Down
4 changes: 2 additions & 2 deletions test/test_private_reader.rb
Expand Up @@ -2,9 +2,9 @@
require File.expand_path("../helper", __FILE__)
require "rake/private_reader"

class TestPrivateAttrs < Rake::TestCase
class TestPrivateAttrs < Rake::TestCase # :nodoc:

class Sample
class Sample # :nodoc:
include Rake::PrivateReader

private_reader :reader, :a
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRake < Rake::TestCase
class TestRake < Rake::TestCase # :nodoc:
def test_each_dir_parent
assert_equal ["a"], alldirs("a")
assert_equal ["a/b", "a"], alldirs("a/b")
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_application.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeApplication < Rake::TestCase
class TestRakeApplication < Rake::TestCase # :nodoc:

def setup
super
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_application_options.rb
Expand Up @@ -3,7 +3,7 @@

TESTING_REQUIRE = []

class TestRakeApplicationOptions < Rake::TestCase
class TestRakeApplicationOptions < Rake::TestCase # :nodoc:

def setup
super
Expand Down
4 changes: 2 additions & 2 deletions test/test_rake_backtrace.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "open3"

class TestBacktraceSuppression < Rake::TestCase
class TestBacktraceSuppression < Rake::TestCase # :nodoc:
def test_bin_rake_suppressed
paths = ["something/bin/rake:12"]

Expand Down Expand Up @@ -36,7 +36,7 @@ def test_near_system_dir_isnt_suppressed
end
end

class TestRakeBacktrace < Rake::TestCase
class TestRakeBacktrace < Rake::TestCase # :nodoc:
include RubyRunner

def setup
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_clean.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "rake/clean"

class TestRakeClean < Rake::TestCase
class TestRakeClean < Rake::TestCase # :nodoc:
def test_clean
load "rake/clean.rb", true

Expand Down
4 changes: 2 additions & 2 deletions test/test_rake_cpu_counter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeCpuCounter < Rake::TestCase
class TestRakeCpuCounter < Rake::TestCase # :nodoc:

def setup
super
Expand All @@ -28,7 +28,7 @@ def @cpu_counter.count; raise; end
assert_equal(4, @cpu_counter.count_with_default)
end

class TestClassMethod < Rake::TestCase
class TestClassMethod < Rake::TestCase # :nodoc:
def setup
super

Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_definitions.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "fileutils"

class TestRakeDefinitions < Rake::TestCase
class TestRakeDefinitions < Rake::TestCase # :nodoc:
include Rake

EXISTINGFILE = "existing"
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_directory_task.rb
Expand Up @@ -3,7 +3,7 @@
require "fileutils"
require "pathname"

class TestRakeDirectoryTask < Rake::TestCase
class TestRakeDirectoryTask < Rake::TestCase # :nodoc:
include Rake

def test_directory
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_dsl.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeDsl < Rake::TestCase
class TestRakeDsl < Rake::TestCase # :nodoc:

def setup
super
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_early_time.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeEarlyTime < Rake::TestCase
class TestRakeEarlyTime < Rake::TestCase # :nodoc:
def test_create
early = Rake::EarlyTime.instance
assert early <= Time.now
Expand Down
6 changes: 3 additions & 3 deletions test/test_rake_extension.rb
Expand Up @@ -2,9 +2,9 @@
require File.expand_path("../helper", __FILE__)
require "stringio"

class TestRakeExtension < Rake::TestCase
class TestRakeExtension < Rake::TestCase # :nodoc:

module Redirect
module Redirect # :nodoc:
def error_redirect
old_err = $stderr
result = StringIO.new
Expand All @@ -16,7 +16,7 @@ def error_redirect
end
end

class Sample
class Sample # :nodoc:
extend Redirect

def duplicate_method
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_file_creation_task.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "fileutils"

class TestRakeFileCreationTask < Rake::TestCase
class TestRakeFileCreationTask < Rake::TestCase # :nodoc:
include Rake

DUMMY_DIR = "dummy_dir"
Expand Down
4 changes: 2 additions & 2 deletions test/test_rake_file_list.rb
Expand Up @@ -2,8 +2,8 @@
require File.expand_path("../helper", __FILE__)
require "pathname"

class TestRakeFileList < Rake::TestCase
FileList = Rake::FileList
class TestRakeFileList < Rake::TestCase # :nodoc:
FileList = Rake::FileList # :nodoc:

def setup
super
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_file_list_path_map.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeFileListPathMap < Rake::TestCase
class TestRakeFileListPathMap < Rake::TestCase # :nodoc:
def test_file_list_supports_pathmap
assert_equal ["a", "b"], FileList["dir/a.rb", "dir/b.rb"].pathmap("%n")
end
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_file_task.rb
Expand Up @@ -3,7 +3,7 @@
require "fileutils"
require "pathname"

class TestRakeFileTask < Rake::TestCase
class TestRakeFileTask < Rake::TestCase # :nodoc:
include Rake

def setup
Expand Down
4 changes: 2 additions & 2 deletions test/test_rake_file_utils.rb
Expand Up @@ -3,7 +3,7 @@
require "fileutils"
require "stringio"

class TestRakeFileUtils < Rake::TestCase
class TestRakeFileUtils < Rake::TestCase # :nodoc:
def setup
super
@rake_test_sh = ENV["RAKE_TEST_SH"]
Expand Down Expand Up @@ -47,7 +47,7 @@ def test_ln
assert_equal "TEST_LN\n", File.read("b")
end

class BadLink
class BadLink # :nodoc:
include Rake::FileUtilsExt
attr_reader :cp_args

Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_functional.rb
Expand Up @@ -3,7 +3,7 @@
require "fileutils"
require "open3"

class TestRakeFunctional < Rake::TestCase
class TestRakeFunctional < Rake::TestCase # :nodoc:
include RubyRunner

def setup
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_invocation_chain.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeInvocationChain < Rake::TestCase
class TestRakeInvocationChain < Rake::TestCase # :nodoc:
include Rake

def setup
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_late_time.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeLateTime < Rake::TestCase
class TestRakeLateTime < Rake::TestCase # :nodoc:
def test_late_time_comparisons
late = Rake::LATE
assert_equal late, late
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_linked_list.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestLinkedList < Rake::TestCase
class TestLinkedList < Rake::TestCase # :nodoc:
include Rake

def test_empty_list
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_makefile_loader.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "rake/loaders/makefile"

class TestRakeMakefileLoader < Rake::TestCase
class TestRakeMakefileLoader < Rake::TestCase # :nodoc:
include Rake

def test_parse
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_multi_task.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "thread"

class TestRakeMultiTask < Rake::TestCase
class TestRakeMultiTask < Rake::TestCase # :nodoc:
include Rake

def setup
Expand Down
4 changes: 2 additions & 2 deletions test/test_rake_name_space.rb
@@ -1,9 +1,9 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeNameSpace < Rake::TestCase
class TestRakeNameSpace < Rake::TestCase # :nodoc:

class TM
class TM # :nodoc:
include Rake::TaskManager
end

Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_package_task.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "rake/packagetask"

class TestRakePackageTask < Rake::TestCase
class TestRakePackageTask < Rake::TestCase # :nodoc:

def test_initialize
touch "install.rb"
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_path_map.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakePathMap < Rake::TestCase
class TestRakePathMap < Rake::TestCase # :nodoc:

def test_returns_self_with_no_args
assert_equal "abc.rb", "abc.rb".pathmap
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_path_map_explode.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakePathMapExplode < Rake::TestCase
class TestRakePathMapExplode < Rake::TestCase # :nodoc:
def setup
super

Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_path_map_partial.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakePathMapPartial < Rake::TestCase
class TestRakePathMapPartial < Rake::TestCase # :nodoc:
def test_pathmap_partial
@path = "1/2/file".dup
def @path.call(n)
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_pseudo_status.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakePseudoStatus < Rake::TestCase
class TestRakePseudoStatus < Rake::TestCase # :nodoc:
def test_with_zero_exit_status
s = Rake::PseudoStatus.new
assert_equal 0, s.exitstatus
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_rake_test_loader.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeRakeTestLoader < Rake::TestCase
class TestRakeRakeTestLoader < Rake::TestCase # :nodoc:

def setup
super
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_reduce_compat.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "open3"

class TestRakeReduceCompat < Rake::TestCase
class TestRakeReduceCompat < Rake::TestCase # :nodoc:
include RubyRunner

def invoke_normal(task_name)
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_require.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeRequire < Rake::TestCase
class TestRakeRequire < Rake::TestCase # :nodoc:
def setup
super
$LOAD_PATH.unshift "." if jruby17?
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_rules.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "fileutils"

class TestRakeRules < Rake::TestCase
class TestRakeRules < Rake::TestCase # :nodoc:
include Rake

SRCFILE = "abc.c"
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_scope.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeScope < Rake::TestCase
class TestRakeScope < Rake::TestCase # :nodoc:
include Rake

def test_path_against_empty_scope
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_task.rb
Expand Up @@ -2,7 +2,7 @@
require File.expand_path("../helper", __FILE__)
require "fileutils"

class TestRakeTask < Rake::TestCase
class TestRakeTask < Rake::TestCase # :nodoc:
include Rake

def setup
Expand Down
2 changes: 1 addition & 1 deletion test/test_rake_task_argument_parsing.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeTaskArgumentParsing < Rake::TestCase
class TestRakeTaskArgumentParsing < Rake::TestCase # :nodoc:
def setup
super

Expand Down