From b41479c91e6685511c1f8ba8586106b322073b62 Mon Sep 17 00:00:00 2001 From: Ben Sanders Date: Sun, 2 Aug 2026 09:49:25 -0400 Subject: added statscounter code --- .../3.4.0/gems/rake-13.4.2/lib/rake/options.rb | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb (limited to 'vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/lib/rake/options.rb') 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 -- cgit v1.2.3