Searched refs:Rake (Results 1 - 25 of 101) sorted by relevance

12345

/macosx-10.10.1/ruby-106/ruby/lib/
H A Drake.rb27 RAKEVERSION = Rake::VERSION
70 FileList = Rake::FileList
71 RakeFileUtils = Rake::FileUtilsExt
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dclassic_namespace.rb5 warn "WARNING: Classic namespaces are deprecated and will be removed from future versions of Rake."
7 Task = Rake::Task
8 FileTask = Rake::FileTask
9 FileCreationTask = Rake::FileCreationTask
10 RakeApp = Rake::Application
H A Dtask_argument_error.rb1 module Rake module
H A Ddefault_loader.rb1 module Rake module
6 Rake.load_rakefile(File.expand_path(fn))
H A Dfile_creation_task.rb4 module Rake module
20 Rake::EARLY
H A Dgempackagetask.rb12 module Rake module
H A Dtasklib.rb3 module Rake module
8 include Rake::DSL
H A Dversion.rb1 module Rake module
5 MAJOR, MINOR, BUILD, = Rake::VERSION.split '.'
H A Ddsl_definition.rb0 # Rake DSL functions.
4 module Rake module
32 Rake::Task.define_task(*args, &block)
50 Rake::FileTask.define_task(*args, &block)
56 Rake::FileCreationTask.define_task(*args, &block)
67 dir, _ = *Rake.application.resolve_args(args)
68 Rake.each_dir_parent(dir) do |d|
85 Rake::MultiTask.define_task(*args, &block)
105 Rake.application.in_namespace(name, &block)
116 Rake
[all...]
H A Dinvocation_exception_mixin.rb1 module Rake module
3 # Return the invocation chain (list of Rake tasks) that were in
H A Dmulti_task.rb1 module Rake module
H A Dphony.rb11 Rake::Task[:phony].tap do |task|
/macosx-10.10.1/ruby-106/ruby/lib/rake/ext/
H A Dmodule.rb9 # Rake extensions to Module.
17 # Rake class names. If someone tries to reference the constant
24 Rake.application.const_warning(const_name)
25 Rake::Task
27 Rake.application.const_warning(const_name)
28 Rake::FileTask
30 Rake.application.const_warning(const_name)
31 Rake::FileCreationTask
33 Rake.application.const_warning(const_name)
34 Rake
[all...]
H A Dtime.rb9 if Rake::EarlyTime === other
/macosx-10.10.1/ruby-106/ruby/bin/
H A Drake31 module Rake module
37 Rake.application.run
/macosx-10.10.1/ruby-106/ruby/test/rake/
H A Dtest_rake_clean.rb4 class TestRakeClean < Rake::TestCase
5 include Rake
H A Dtest_rake_task_lib.rb4 class TestRakeTaskLib < Rake::TestCase
6 tl = Rake::TaskLib.new
H A Dtest_rake_package_task.rb4 class TestRakePackageTask < Rake::TestCase
13 pkg = Rake::PackageTask.new("pkgr", "1.2.3") { |p|
31 assert Rake::Task[:package]
32 assert Rake::Task['pkg/pkgr-1.2.3.tgz']
33 assert Rake::Task['pkg/pkgr-1.2.3.tar.gz']
34 assert Rake::Task['pkg/pkgr-1.2.3.tar.bz2']
35 assert Rake::Task['pkg/pkgr-1.2.3.zip']
36 assert Rake::Task['pkg/pkgr-1.2.3']
37 assert Rake::Task[:clobber_package]
38 assert Rake
[all...]
H A Dtest_rake.rb3 class TestRake < Rake::TestCase
21 Rake.each_dir_parent(fn) { |d| result << d }
26 old_app = Rake.application
28 Rake.application = fake_app
30 assert_equal fake_app, Rake.application
33 Rake.application = old_app
37 assert_equal @tempdir, Rake.original_dir
H A Dtest_rake_file_list_path_map.rb3 class TestRakeFileListPathMap < Rake::TestCase
H A Dtest_rake_require.rb3 class TestRakeRequire < Rake::TestCase
7 app = Rake::Application.new
16 app = Rake::Application.new
30 app = Rake::Application.new
H A Dtest_rake_dsl.rb3 class TestRakeDsl < Rake::TestCase
7 Rake::Task.clear
14 refute_nil Rake::Task["n:t"]
33 refute_nil Rake::Task["bob:t"]
50 Rake.application.invoke_task :foo_deprecated_a
64 Rake.application.options.ignore_deprecate = true
67 Rake.application.invoke_task :foo_deprecated_a
75 Rake.application.options.ignore_deprecate = false
H A Dtest_rake_name_space.rb3 class TestRakeNameSpace < Rake::TestCase
6 include Rake::TaskManager
11 ns = Rake::NameSpace.new(mgr, [])
18 mgr.define_task(Rake::Task, "t")
29 mgr.define_task(Rake::Task, :x)
30 mgr.define_task(Rake::Task, :y)
32 mgr.define_task(Rake::Task, :z)
36 mgr.define_task(Rake::Task, :x)
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_task.rb9 Rake::Task.clear
46 assert Rake::Task[:rdoc]
47 assert Rake::Task[:clobber_rdoc]
48 assert Rake::Task[:rerdoc]
53 assert Rake::Task[:rdoc_dev]
54 assert Rake::Task[:clobber_rdoc_dev]
55 assert Rake::Task[:rerdoc_dev]
77 assert Rake::Task[:rdoc_dev]
78 assert Rake::Task[:clobber_rdoc_dev]
79 assert Rake
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rake/contrib/
H A Drubyforgepublisher.rb3 module Rake module

Completed in 108 milliseconds

12345