summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb
diff options
context:
space:
mode:
authorBen Sanders <ben@sanders.life>2026-08-02 09:49:25 -0400
committerBen Sanders <ben@sanders.life>2026-08-02 09:49:25 -0400
commitb41479c91e6685511c1f8ba8586106b322073b62 (patch)
treec9f1345999d754ae0a533849966427e792d9e68d /vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb
parentcfaceeb9a6d1295f5754be211858155cd309acc2 (diff)
added statscounter code
Diffstat (limited to 'vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb')
-rw-r--r--vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb b/vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb
new file mode 100644
index 0000000..01974c5
--- /dev/null
+++ b/vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb
@@ -0,0 +1,31 @@
+# frozen_string_literal: true
+
+module Rake
+
+ ##
+ # Options used by the Rake command line application.
+ #
+ class Options
+ attr_accessor :always_multitask
+ attr_accessor :backtrace
+ attr_accessor :build_all
+ attr_accessor :dryrun
+ attr_accessor :ignore_deprecate
+ attr_accessor :ignore_system
+ attr_accessor :job_stats
+ attr_accessor :load_system
+ attr_accessor :nosearch
+ attr_accessor :rakelib
+ attr_accessor :show_all_tasks
+ attr_accessor :show_prereqs
+ attr_accessor :show_task_pattern
+ attr_accessor :show_tasks
+ attr_accessor :silent
+ attr_accessor :suppress_backtrace_pattern
+ attr_accessor :thread_pool_size
+ attr_accessor :trace
+ attr_accessor :trace_output
+ attr_accessor :trace_rules
+ end
+
+end