rake 13.4.0 → 13.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85f5ba92bb3bcf4a2a2c791c2c26009e75143bf70ac26dbc0b7f619fef4cafc1
4
- data.tar.gz: c411a8b49c26d25f0560f7aa05889cc2f365d5caf6594e834eeeaa88354ae02c
3
+ metadata.gz: 50b267edafff35a6c2aaa0fbd00616439ee8dff0c33311375becd913030a6849
4
+ data.tar.gz: 8ab984dd32f7ec784a579a2e8742e64cc054d8ca917bf7d5dedc55efc95bf328
5
5
  SHA512:
6
- metadata.gz: fc7a67e8481634df0077751f949abdeaab8af1a88dbb0880a4d2f3343e827ea6b1d72761b2005e2de723faa08d9948dc99deb87b8f9074f6f4cb959c637ed229
7
- data.tar.gz: 7c1df4f498ef475b112491b3b6c15d032fdcf557313b85e2884901e2eb65ba35e48f8ebd6ddc61a11954a6fa68be8bbd6041f82ff11402967561d768587231e7
6
+ metadata.gz: 3b94ffabd5d18c5f18d3377ecb26db69861dce0e431cb9f17bef0b27244064a28c0121efabbebc1a3eadfd8aa17d4ef81514c1fa21209b48f23585b43963b56a
7
+ data.tar.gz: 54a94802768ee7293c6476fcd2891b1b9e6592b8587f9020b5be939fabfd0b5857661e40800f5c4221eb8630312276dd6acb5791e801875393ca8a12d92911f9
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rake
4
+
5
+ ##
6
+ # Options used by the Rake command line application.
7
+ #
8
+ class Options
9
+ attr_accessor :always_multitask
10
+ attr_accessor :backtrace
11
+ attr_accessor :build_all
12
+ attr_accessor :dryrun
13
+ attr_accessor :ignore_deprecate
14
+ attr_accessor :ignore_system
15
+ attr_accessor :job_stats
16
+ attr_accessor :load_system
17
+ attr_accessor :nosearch
18
+ attr_accessor :rakelib
19
+ attr_accessor :show_all_tasks
20
+ attr_accessor :show_prereqs
21
+ attr_accessor :show_task_pattern
22
+ attr_accessor :show_tasks
23
+ attr_accessor :silent
24
+ attr_accessor :suppress_backtrace_pattern
25
+ attr_accessor :thread_pool_size
26
+ attr_accessor :trace
27
+ attr_accessor :trace_output
28
+ attr_accessor :trace_rules
29
+ end
30
+
31
+ end
data/lib/rake/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Rake
3
- VERSION = "13.4.0"
3
+ VERSION = "13.4.1"
4
4
 
5
5
  module Version # :nodoc: all
6
6
  MAJOR, MINOR, BUILD, *OTHER = Rake::VERSION.split "."
data/rake.gemspec CHANGED
@@ -70,6 +70,7 @@ Gem::Specification.new do |s|
70
70
  "lib/rake/loaders/makefile.rb",
71
71
  "lib/rake/multi_task.rb",
72
72
  "lib/rake/name_space.rb",
73
+ "lib/rake/options.rb",
73
74
  "lib/rake/packagetask.rb",
74
75
  "lib/rake/phony.rb",
75
76
  "lib/rake/private_reader.rb",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.4.0
4
+ version: 13.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroshi SHIBATA
@@ -69,6 +69,7 @@ files:
69
69
  - lib/rake/loaders/makefile.rb
70
70
  - lib/rake/multi_task.rb
71
71
  - lib/rake/name_space.rb
72
+ - lib/rake/options.rb
72
73
  - lib/rake/packagetask.rb
73
74
  - lib/rake/phony.rb
74
75
  - lib/rake/private_reader.rb