diff options
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.rb | 31 |
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 |
