rake 11.3.0 → 13.0.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 +5 -5
- data/.github/workflows/macos.yml +22 -0
- data/.github/workflows/ubuntu-rvm.yml +28 -0
- data/.github/workflows/ubuntu.yml +20 -0
- data/.github/workflows/windows.yml +20 -0
- data/CONTRIBUTING.rdoc +11 -4
- data/Gemfile +8 -1
- data/History.rdoc +171 -37
- data/README.rdoc +9 -11
- data/Rakefile +21 -13
- data/bin/bundle +105 -0
- data/bin/rake +29 -0
- data/bin/rdoc +29 -0
- data/bin/rubocop +29 -0
- data/doc/jamis.rb +1 -0
- data/doc/rake.1 +139 -124
- data/doc/rakefile.rdoc +2 -4
- data/exe/rake +1 -1
- data/lib/rake/application.rb +119 -79
- data/lib/rake/backtrace.rb +3 -2
- data/lib/rake/clean.rb +7 -5
- data/lib/rake/cloneable.rb +1 -0
- data/lib/rake/cpu_counter.rb +3 -2
- data/lib/rake/default_loader.rb +1 -0
- data/lib/rake/dsl_definition.rb +5 -4
- data/lib/rake/early_time.rb +1 -0
- data/lib/rake/ext/core.rb +1 -0
- data/lib/rake/ext/string.rb +22 -21
- data/lib/rake/file_creation_task.rb +4 -3
- data/lib/rake/file_list.rb +13 -14
- data/lib/rake/file_task.rb +12 -4
- data/lib/rake/file_utils.rb +17 -22
- data/lib/rake/file_utils_ext.rb +8 -18
- data/lib/rake/invocation_chain.rb +1 -0
- data/lib/rake/invocation_exception_mixin.rb +1 -0
- data/lib/rake/late_time.rb +2 -1
- data/lib/rake/linked_list.rb +1 -0
- data/lib/rake/loaders/makefile.rb +5 -4
- data/lib/rake/multi_task.rb +2 -1
- data/lib/rake/name_space.rb +1 -1
- data/lib/rake/packagetask.rb +28 -16
- data/lib/rake/phony.rb +2 -1
- data/lib/rake/private_reader.rb +1 -0
- data/lib/rake/promise.rb +13 -12
- data/lib/rake/pseudo_status.rb +1 -0
- data/lib/rake/rake_module.rb +30 -1
- data/lib/rake/rake_test_loader.rb +18 -12
- data/lib/rake/rule_recursion_overflow_error.rb +2 -1
- data/lib/rake/scope.rb +3 -2
- data/lib/rake/task.rb +70 -27
- data/lib/rake/task_argument_error.rb +1 -0
- data/lib/rake/task_arguments.rb +10 -4
- data/lib/rake/task_manager.rb +54 -39
- data/lib/rake/tasklib.rb +2 -1
- data/lib/rake/testtask.rb +28 -16
- data/lib/rake/thread_history_display.rb +4 -3
- data/lib/rake/thread_pool.rb +15 -14
- data/lib/rake/trace_output.rb +1 -0
- data/lib/rake/version.rb +3 -2
- data/lib/rake/win32.rb +9 -8
- data/lib/rake.rb +34 -33
- data/rake.gemspec +22 -9
- metadata +25 -108
- data/.gitignore +0 -14
- data/.rubocop.yml +0 -18
- data/.travis.yml +0 -28
- data/appveyor.yml +0 -22
- data/doc/release_notes/README.md +0 -4
- data/doc/release_notes/rake-0.4.14.rdoc +0 -23
- data/doc/release_notes/rake-0.4.15.rdoc +0 -35
- data/doc/release_notes/rake-0.5.0.rdoc +0 -53
- data/doc/release_notes/rake-0.5.3.rdoc +0 -78
- data/doc/release_notes/rake-0.5.4.rdoc +0 -46
- data/doc/release_notes/rake-0.6.0.rdoc +0 -141
- data/doc/release_notes/rake-0.7.0.rdoc +0 -119
- data/doc/release_notes/rake-0.7.1.rdoc +0 -59
- data/doc/release_notes/rake-0.7.2.rdoc +0 -121
- data/doc/release_notes/rake-0.7.3.rdoc +0 -47
- data/doc/release_notes/rake-0.8.0.rdoc +0 -114
- data/doc/release_notes/rake-0.8.2.rdoc +0 -165
- data/doc/release_notes/rake-0.8.3.rdoc +0 -112
- data/doc/release_notes/rake-0.8.4.rdoc +0 -147
- data/doc/release_notes/rake-0.8.5.rdoc +0 -53
- data/doc/release_notes/rake-0.8.6.rdoc +0 -37
- data/doc/release_notes/rake-0.8.7.rdoc +0 -55
- data/doc/release_notes/rake-0.9.0.rdoc +0 -112
- data/doc/release_notes/rake-0.9.1.rdoc +0 -52
- data/doc/release_notes/rake-0.9.2.2.rdoc +0 -55
- data/doc/release_notes/rake-0.9.2.rdoc +0 -49
- data/doc/release_notes/rake-0.9.3.rdoc +0 -102
- data/doc/release_notes/rake-0.9.4.rdoc +0 -60
- data/doc/release_notes/rake-0.9.5.rdoc +0 -55
- data/doc/release_notes/rake-0.9.6.rdoc +0 -64
- data/doc/release_notes/rake-10.0.0.rdoc +0 -178
- data/doc/release_notes/rake-10.0.1.rdoc +0 -58
- data/doc/release_notes/rake-10.0.2.rdoc +0 -53
- data/doc/release_notes/rake-10.0.3.rdoc +0 -191
- data/doc/release_notes/rake-10.1.0.rdoc +0 -61
- data/lib/rake/contrib/compositepublisher.rb +0 -21
- data/lib/rake/contrib/ftptools.rb +0 -137
- data/lib/rake/contrib/sshpublisher.rb +0 -60
- data/lib/rake/ext/pathname.rb +0 -25
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 37ea7de22cf200ba287c8658d5d1587e155b1a819f2c6ba42236a3a7a69c8d38
|
|
4
|
+
data.tar.gz: ebf1622fc43aabcb464562bb109747ce4922ef4de79bf416527fd80211f24e4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f64bb34011d4aae5b3fd776d759cafcd34476ad511483c74987d0465202b0985ef3ebe8ae936dd784c40597f52bd78e4c1f6f30fbe2414a18a1e566ca489a127
|
|
7
|
+
data.tar.gz: c9522c2fd5de3c0388264281dfc23ce20c670cba0a83499e9d3bece53dc8f17c78783acfeac27ee14fee9c555e06939bbccd1801a976005cbdc6027e17fcfeb9
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: macos
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
runs-on: macos-latest
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@master
|
|
13
|
+
- name: Set up Ruby
|
|
14
|
+
uses: actions/setup-ruby@v1
|
|
15
|
+
with:
|
|
16
|
+
ruby-version: ${{ matrix.ruby }}
|
|
17
|
+
- name: Install dependencies
|
|
18
|
+
run: gem install minitest
|
|
19
|
+
- name: Run test
|
|
20
|
+
env:
|
|
21
|
+
COVERALLS: "yes"
|
|
22
|
+
run: ruby -Ilib exe/rake
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: ubuntu-rvm
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
ruby: [ 'jruby-head', 'jruby-9.2.9.0', 'ruby-head', '2.3.8', '2.2.10' ]
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@master
|
|
13
|
+
- name: Set up RVM
|
|
14
|
+
run: |
|
|
15
|
+
curl -sSL https://get.rvm.io | bash
|
|
16
|
+
- name: Set up Ruby
|
|
17
|
+
run: |
|
|
18
|
+
source $HOME/.rvm/scripts/rvm
|
|
19
|
+
rvm install ${{ matrix.ruby }} --binary
|
|
20
|
+
rvm --default use ${{ matrix.ruby }}
|
|
21
|
+
- name: Install dependencies
|
|
22
|
+
run: |
|
|
23
|
+
source $HOME/.rvm/scripts/rvm
|
|
24
|
+
gem install minitest
|
|
25
|
+
- name: Run test
|
|
26
|
+
run: |
|
|
27
|
+
source $HOME/.rvm/scripts/rvm
|
|
28
|
+
ruby -Ilib exe/rake
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
name: ubuntu
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@master
|
|
13
|
+
- name: Set up Ruby
|
|
14
|
+
uses: actions/setup-ruby@v1
|
|
15
|
+
with:
|
|
16
|
+
ruby-version: ${{ matrix.ruby }}
|
|
17
|
+
- name: Install dependencies
|
|
18
|
+
run: gem install minitest
|
|
19
|
+
- name: Run test
|
|
20
|
+
run: ruby -Ilib exe/rake
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
name: windows
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
runs-on: windows-latest
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@master
|
|
13
|
+
- name: Set up Ruby
|
|
14
|
+
uses: actions/setup-ruby@v1
|
|
15
|
+
with:
|
|
16
|
+
ruby-version: ${{ matrix.ruby }}
|
|
17
|
+
- name: Install dependencies
|
|
18
|
+
run: gem install minitest
|
|
19
|
+
- name: Run test
|
|
20
|
+
run: ruby -Ilib exe/rake
|
data/CONTRIBUTING.rdoc
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Rake is currently hosted at github. The github web page is
|
|
4
4
|
https://github.com/ruby/rake . The public git clone URL is
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
https://github.com/ruby/rake.git
|
|
7
7
|
|
|
8
8
|
= Running the Rake Test Suite
|
|
9
9
|
|
|
@@ -12,11 +12,18 @@ If you wish to run the unit and functional tests that come with Rake:
|
|
|
12
12
|
* +cd+ into the top project directory of rake.
|
|
13
13
|
* Install gem dependency using bundler:
|
|
14
14
|
|
|
15
|
-
bundle install # Install bundler, minitest and rdoc
|
|
15
|
+
$ bundle install # Install bundler, minitest and rdoc
|
|
16
16
|
|
|
17
|
-
*
|
|
17
|
+
* Run the test suite
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
$ rake
|
|
20
|
+
|
|
21
|
+
= Rubocop
|
|
22
|
+
|
|
23
|
+
Rake uses Rubocop to enforce a consistent style on new changes being
|
|
24
|
+
proposed. You can check your code with Rubocop using:
|
|
25
|
+
|
|
26
|
+
$ ./bin/rubocop
|
|
20
27
|
|
|
21
28
|
= Issues and Bug Reports
|
|
22
29
|
|
data/Gemfile
CHANGED
data/History.rdoc
CHANGED
|
@@ -1,24 +1,159 @@
|
|
|
1
|
+
=== 13.0.1
|
|
2
|
+
|
|
3
|
+
==== Bug fixes
|
|
4
|
+
|
|
5
|
+
* Fixed bug: Reenabled task raises previous exception on second invokation
|
|
6
|
+
Pull Request #271 by thorsteneckel
|
|
7
|
+
* Fix an incorrectly resolved arg pattern
|
|
8
|
+
Pull Request #327 by mjbellantoni
|
|
9
|
+
|
|
10
|
+
=== 13.0.0
|
|
11
|
+
|
|
12
|
+
==== Enhancements
|
|
13
|
+
|
|
14
|
+
* Follows recent changes on keyword arguments in ruby 2.7.
|
|
15
|
+
Pull Request #326 by nobu
|
|
16
|
+
* Make `PackageTask` be able to omit parent directory while packing files
|
|
17
|
+
Pull Request #310 by tonytonyjan
|
|
18
|
+
* Add order only dependency
|
|
19
|
+
Pull Request #269 by take-cheeze
|
|
20
|
+
|
|
21
|
+
==== Compatibility changes
|
|
22
|
+
|
|
23
|
+
* Drop old ruby versions(< 2.2)
|
|
24
|
+
|
|
25
|
+
=== 12.3.3
|
|
26
|
+
|
|
27
|
+
==== Bug fixes
|
|
28
|
+
|
|
29
|
+
* Use the application's name in error message if a task is not found.
|
|
30
|
+
Pull Request #303 by tmatilai
|
|
31
|
+
|
|
32
|
+
==== Enhancements:
|
|
33
|
+
|
|
34
|
+
* Use File.open explicitly.
|
|
35
|
+
|
|
36
|
+
=== 12.3.2
|
|
37
|
+
|
|
38
|
+
==== Bug fixes
|
|
39
|
+
|
|
40
|
+
* Fixed test fails caused by 2.6 warnings.
|
|
41
|
+
Pull Request #297 by hsbt
|
|
42
|
+
|
|
43
|
+
==== Enhancements:
|
|
44
|
+
|
|
45
|
+
* Rdoc improvements.
|
|
46
|
+
Pull Request #293 by colby-swandale
|
|
47
|
+
* Improve multitask performance.
|
|
48
|
+
Pull Request #273 by jsm
|
|
49
|
+
* Add alias `prereqs`.
|
|
50
|
+
Pull Request #268 by take-cheeze
|
|
51
|
+
|
|
52
|
+
=== 12.3.1
|
|
53
|
+
|
|
54
|
+
==== Bug fixes
|
|
55
|
+
|
|
56
|
+
* Support did_you_mean >= v1.2.0 which has a breaking change on formatters.
|
|
57
|
+
Pull request #262 by FUJI Goro.
|
|
58
|
+
|
|
59
|
+
==== Enhancements:
|
|
60
|
+
|
|
61
|
+
* Don't run task if it depends on already invoked but failed task.
|
|
62
|
+
Pull request #252 by Gonzalo Rodriguez.
|
|
63
|
+
* Make space trimming consistent for all task arguments.
|
|
64
|
+
Pull request #259 by Gonzalo Rodriguez.
|
|
65
|
+
* Removes duplicated inclusion of Rake::DSL in tests.
|
|
66
|
+
Pull request #254 by Gonzalo Rodriguez.
|
|
67
|
+
* Re-raise a LoadError that didn't come from require in the test loader.
|
|
68
|
+
Pull request #250 by Dylan Thacker-Smith.
|
|
69
|
+
|
|
70
|
+
=== 12.3.0
|
|
71
|
+
|
|
72
|
+
==== Compatibility Changes
|
|
73
|
+
|
|
74
|
+
* Bump `required_ruby_version` to Ruby 2.0.0. Rake has already
|
|
75
|
+
removed support for Ruby 1.9.x.
|
|
76
|
+
|
|
77
|
+
==== Enhancements:
|
|
78
|
+
|
|
79
|
+
* Support `test-bundled-gems` task on ruby core.
|
|
80
|
+
|
|
81
|
+
=== 12.2.1
|
|
82
|
+
|
|
83
|
+
==== Bug fixes
|
|
84
|
+
|
|
85
|
+
* Fixed to break Capistrano::Application on capistrano3.
|
|
86
|
+
|
|
87
|
+
=== 12.2.0
|
|
88
|
+
|
|
89
|
+
==== Enhancements:
|
|
90
|
+
|
|
91
|
+
* Make rake easier to use as a library
|
|
92
|
+
Pull request #211 by @drbrain
|
|
93
|
+
* Fix quadratic performance in FileTask#out_of_date?
|
|
94
|
+
Pull request #224 by @doudou
|
|
95
|
+
* Clarify output when printing nested exception traces
|
|
96
|
+
Pull request #232 by @urbanautomaton
|
|
97
|
+
|
|
98
|
+
==== Bug fixes
|
|
99
|
+
|
|
100
|
+
* Account for a file that match 2 or more patterns.
|
|
101
|
+
Pull request #231 by @styd
|
|
102
|
+
|
|
103
|
+
=== 12.1.0
|
|
104
|
+
|
|
105
|
+
==== Enhancements:
|
|
106
|
+
|
|
107
|
+
* Added did_you_mean feature for invalid rake task.
|
|
108
|
+
Pull request #221 by @xtina-starr
|
|
109
|
+
* Enabled to dependency chained by extensions. Pull request #39 by Petr Skocik.
|
|
110
|
+
* Make all of string literals to frozen objects on Ruby 2.4 or later.
|
|
111
|
+
|
|
112
|
+
==== Bug fixes
|
|
113
|
+
|
|
114
|
+
* Typo fixes in rakefile.rdoc. Pull request #180 by Yuta Kurotaki.
|
|
115
|
+
* Fix unexpected behavior of file task with dryrun option.
|
|
116
|
+
Pull request #183 by @aycabta.
|
|
117
|
+
* Make LoadError from running tests more obvious. Pull request #195
|
|
118
|
+
by Eric Hodel.
|
|
119
|
+
* Fix unexpected TypeError with hash style option. Pull request #202
|
|
120
|
+
by Kuniaki IGARASHI.
|
|
121
|
+
|
|
122
|
+
=== 12.0.0
|
|
123
|
+
|
|
124
|
+
==== Compatibility Changes
|
|
125
|
+
|
|
126
|
+
* Removed arguments on clear #157 by Jesse Bowes
|
|
127
|
+
* Removed `rake/contrib` packages. These are extracted to `rake-contrib` gem.
|
|
128
|
+
* Removed deprecated method named `last\_comment`.
|
|
129
|
+
|
|
130
|
+
==== Enhancements:
|
|
131
|
+
|
|
132
|
+
* Re-use trace option on `cleanup` task. #164 by Brian Henderson
|
|
133
|
+
* Actions adore keyword arguments #174 by Josh Cheek
|
|
134
|
+
* Rake::TaskArguments#key? alias of #has_key? #175 by Paul Annesley
|
|
135
|
+
|
|
1
136
|
=== 11.3.0 / 2016-09-20
|
|
2
137
|
|
|
3
|
-
Enhancements:
|
|
138
|
+
==== Enhancements:
|
|
4
139
|
|
|
5
140
|
* Remove to reference `Fixnum` constant. Pull request #160 by nobu
|
|
6
141
|
|
|
7
142
|
=== 11.2.2 / 2016-06-12
|
|
8
143
|
|
|
9
|
-
Bug fixes
|
|
144
|
+
==== Bug fixes
|
|
10
145
|
|
|
11
146
|
* Fix unexpected behavior with multiple dependencies on Rake::TestTask
|
|
12
147
|
|
|
13
148
|
=== 11.2.1 / 2016-06-12
|
|
14
149
|
|
|
15
|
-
Bug fixes
|
|
150
|
+
==== Bug fixes
|
|
16
151
|
|
|
17
152
|
* Fix regression of dependencies handling on Rake::TestTask. Report #139
|
|
18
153
|
|
|
19
154
|
=== 11.2.0 / 2016-06-11
|
|
20
155
|
|
|
21
|
-
Bug fixes
|
|
156
|
+
==== Bug fixes
|
|
22
157
|
|
|
23
158
|
* Fix unexpected cut-out behavior on task description using triple dots
|
|
24
159
|
and exclamation. Report #106 from Stephan Kämper and Pull request #134 by Lee
|
|
@@ -26,7 +161,7 @@ Bug fixes:
|
|
|
26
161
|
by bakunyo
|
|
27
162
|
* Ignore to use `hwprefs` on Darwin platform. Use sysctl now. Report #128
|
|
28
163
|
|
|
29
|
-
Enhancements
|
|
164
|
+
==== Enhancements
|
|
30
165
|
|
|
31
166
|
* Spawn options for sh Pull equest #138 by Eric Hodel.
|
|
32
167
|
* Allow to specify dependencies(prerequisites) for Rake::TestTask
|
|
@@ -38,39 +173,39 @@ Enhancements:
|
|
|
38
173
|
|
|
39
174
|
=== 11.1.2 / 2016-03-28
|
|
40
175
|
|
|
41
|
-
Bug fixes
|
|
176
|
+
==== Bug fixes
|
|
42
177
|
|
|
43
178
|
* Remove `-W` option when Rake::TestTask#verbose enabled. It's misunderstanding
|
|
44
179
|
specification change with Rake 11. Partly revert #67
|
|
45
180
|
|
|
46
181
|
=== 11.1.1 / 2016-03-14
|
|
47
182
|
|
|
48
|
-
Bug fixes
|
|
183
|
+
==== Bug fixes
|
|
49
184
|
|
|
50
185
|
* Use `-W` instead of `--verbose` when Rake::TestTask#verbose enabled.
|
|
51
186
|
JRuby doesn't have `--verbose` option.
|
|
52
187
|
|
|
53
188
|
=== 11.1.0 / 2016-03-11
|
|
54
189
|
|
|
55
|
-
Compatibility Changes
|
|
190
|
+
==== Compatibility Changes
|
|
56
191
|
|
|
57
192
|
* Revert to remove `last\_comment`. It will remove Rake 12.
|
|
58
193
|
|
|
59
194
|
=== 11.0.1 / 2016-03-09
|
|
60
195
|
|
|
61
|
-
Bug fixes
|
|
196
|
+
==== Bug fixes
|
|
62
197
|
|
|
63
198
|
* Fixed packaging manifest.
|
|
64
199
|
|
|
65
200
|
=== 11.0.0 / 2016-03-09
|
|
66
201
|
|
|
67
|
-
Bug fixes
|
|
202
|
+
==== Bug fixes
|
|
68
203
|
|
|
69
204
|
* Correctly handle bad encoding in exception messages. Pull request #113
|
|
70
205
|
by Tomer Brisker
|
|
71
206
|
* Fix verbose option at TestTask. Pull request #67 by Mike Blumtritt
|
|
72
207
|
|
|
73
|
-
Enhancements
|
|
208
|
+
==== Enhancements
|
|
74
209
|
|
|
75
210
|
* Make FileList#exclude more analogous to FileList#include.
|
|
76
211
|
* Use IO.open instead of Open3.popen3 for CPU counter.
|
|
@@ -84,7 +219,7 @@ Enhancements:
|
|
|
84
219
|
Pull request #12 by Chris Keathley
|
|
85
220
|
* Use ruby warnings by default. Pull request #97 by Harold Giménez
|
|
86
221
|
|
|
87
|
-
Compatibility Changes
|
|
222
|
+
==== Compatibility Changes
|
|
88
223
|
|
|
89
224
|
* Removed to support Ruby 1.8.x
|
|
90
225
|
* Removed constant named `RAKEVERSION`
|
|
@@ -98,7 +233,7 @@ Compatibility Changes:
|
|
|
98
233
|
|
|
99
234
|
=== 10.5.0 / 2016-01-13
|
|
100
235
|
|
|
101
|
-
Enhancements
|
|
236
|
+
==== Enhancements
|
|
102
237
|
|
|
103
238
|
* Removed monkey patching for Ruby 1.8. Pull request #46 by Pablo Herrero.
|
|
104
239
|
* Inheritance class of Rake::FileList returns always self class.
|
|
@@ -106,7 +241,7 @@ Enhancements:
|
|
|
106
241
|
|
|
107
242
|
=== 10.4.2 / 2014-12-02
|
|
108
243
|
|
|
109
|
-
Bug fixes
|
|
244
|
+
==== Bug fixes
|
|
110
245
|
|
|
111
246
|
* Rake no longer edits ARGV. This allows you to re-exec rake from a rake
|
|
112
247
|
task. Pull requset #9 by Matt Palmer.
|
|
@@ -117,14 +252,14 @@ Bug fixes:
|
|
|
117
252
|
|
|
118
253
|
=== 10.4.1 / 2014-12-01
|
|
119
254
|
|
|
120
|
-
Bug fixes
|
|
255
|
+
==== Bug fixes
|
|
121
256
|
|
|
122
257
|
* Reverted fix for #277 as it caused numerous issues for rake users.
|
|
123
258
|
rails/spring issue #366 by Gustavo Dutra.
|
|
124
259
|
|
|
125
260
|
=== 10.4.0 / 2014-11-22
|
|
126
261
|
|
|
127
|
-
Enhancements
|
|
262
|
+
==== Enhancements
|
|
128
263
|
|
|
129
264
|
* Upgraded to minitest 5. Pull request #292 by Teo Ljungberg.
|
|
130
265
|
* Added support for Pathname in rake tasks. Pull request #271 by Randy
|
|
@@ -135,7 +270,7 @@ Enhancements:
|
|
|
135
270
|
task. Issue #277 by Matt Palmer.
|
|
136
271
|
* Etc.nprocessors is used for counting the number of CPUs.
|
|
137
272
|
|
|
138
|
-
Bug fixes
|
|
273
|
+
==== Bug fixes
|
|
139
274
|
|
|
140
275
|
* Updated rake manpage. Issue #283 by Nathan Long, pull request #291 by
|
|
141
276
|
skittleys.
|
|
@@ -148,7 +283,7 @@ Bug fixes:
|
|
|
148
283
|
|
|
149
284
|
=== 10.3.2 / 2014-05-15
|
|
150
285
|
|
|
151
|
-
Bug fixes
|
|
286
|
+
==== Bug fixes
|
|
152
287
|
|
|
153
288
|
* Rake no longer infinitely loops when showing exception causes that refer to
|
|
154
289
|
each other. Bug #272 by Chris Bandy.
|
|
@@ -156,7 +291,7 @@ Bug fixes:
|
|
|
156
291
|
|
|
157
292
|
=== 10.3.1 / 2014-04-17
|
|
158
293
|
|
|
159
|
-
Bug fixes
|
|
294
|
+
==== Bug fixes
|
|
160
295
|
|
|
161
296
|
* Really stop reporting an error when cleaning already-deleted files. Pull
|
|
162
297
|
request #269 by Randy Coulman
|
|
@@ -164,13 +299,13 @@ Bug fixes:
|
|
|
164
299
|
|
|
165
300
|
=== 10.3 / 2014-04-15
|
|
166
301
|
|
|
167
|
-
Enhancements
|
|
302
|
+
==== Enhancements
|
|
168
303
|
|
|
169
304
|
* Added --build-all option to rake which treats all file prerequisites as
|
|
170
305
|
out-of-date. Pull request #254 by Andrew Gilbert.
|
|
171
306
|
* Added Rake::NameSpace#scope. Issue #263 by Jon San Miguel.
|
|
172
307
|
|
|
173
|
-
Bug fixes
|
|
308
|
+
==== Bug fixes
|
|
174
309
|
|
|
175
310
|
* Suppress org.jruby package files in rake error messages for JRuby users.
|
|
176
311
|
Issue #213 by Charles Nutter.
|
|
@@ -182,13 +317,13 @@ Bug fixes:
|
|
|
182
317
|
|
|
183
318
|
=== 10.2.2 / 2014-03-27
|
|
184
319
|
|
|
185
|
-
Bug fixes
|
|
320
|
+
==== Bug fixes
|
|
186
321
|
|
|
187
322
|
* Restored Ruby 1.8.7 compatibility
|
|
188
323
|
|
|
189
324
|
=== 10.2.1 / 2014-03-25
|
|
190
325
|
|
|
191
|
-
Bug fixes
|
|
326
|
+
==== Bug fixes
|
|
192
327
|
|
|
193
328
|
* File tasks including a ':' are now top-level tasks again. Issue #262 by
|
|
194
329
|
Josh Holtrop.
|
|
@@ -197,7 +332,7 @@ Bug fixes:
|
|
|
197
332
|
|
|
198
333
|
=== 10.2.0 / 2014-03-24
|
|
199
334
|
|
|
200
|
-
Enhancements
|
|
335
|
+
==== Enhancements
|
|
201
336
|
|
|
202
337
|
* Rake now requires Ruby 1.9 or newer. For me, this is a breaking change, but
|
|
203
338
|
it seems that Jim planned to release it with Rake 10.2. See also pull
|
|
@@ -215,7 +350,7 @@ Enhancements:
|
|
|
215
350
|
Filip Hrbek.
|
|
216
351
|
* Rake now prints the exception class on errors. Patch #251 by David Cornu.
|
|
217
352
|
|
|
218
|
-
Bug fixes
|
|
353
|
+
==== Bug fixes
|
|
219
354
|
|
|
220
355
|
* Fixed typos. Pull request #256 by Valera Rozuvan, #250 via Jake Worth, #260
|
|
221
356
|
by Zachary Scott.
|
|
@@ -227,11 +362,10 @@ Bug fixes:
|
|
|
227
362
|
* Fixed bug in can\_detect\_signals? in test. Patch from #243 by Alexey
|
|
228
363
|
Borzenkov.
|
|
229
364
|
|
|
230
|
-
=== 10.1.1
|
|
365
|
+
=== 10.1.1
|
|
231
366
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
the individual release notes files.
|
|
367
|
+
* Use http://github.com/jimweirich/rake instead of http://rake.rubyforge.org for
|
|
368
|
+
canonical project url.
|
|
235
369
|
|
|
236
370
|
=== 10.1.0
|
|
237
371
|
|
|
@@ -372,7 +506,7 @@ we'll repeat the changes for versions 0.9.3 through 0.9.5 here.
|
|
|
372
506
|
programatically add rake task libraries.
|
|
373
507
|
|
|
374
508
|
* You can specific backtrace suppression patterns (see
|
|
375
|
-
--
|
|
509
|
+
--suppress-backtrace)
|
|
376
510
|
|
|
377
511
|
* Directory tasks can now take prerequisites and actions
|
|
378
512
|
|
|
@@ -620,7 +754,7 @@ we'll repeat the changes for version 0.9.3 here.
|
|
|
620
754
|
programatically add rake task libraries.
|
|
621
755
|
|
|
622
756
|
* You can specific backtrace suppression patterns (see
|
|
623
|
-
--
|
|
757
|
+
--suppress-backtrace)
|
|
624
758
|
|
|
625
759
|
* Directory tasks can now take prerequisites and actions
|
|
626
760
|
|
|
@@ -830,7 +964,7 @@ a number of bug fixes.
|
|
|
830
964
|
programatically add rake task libraries.
|
|
831
965
|
|
|
832
966
|
* You can specific backtrace suppression patterns (see
|
|
833
|
-
--
|
|
967
|
+
--suppress-backtrace)
|
|
834
968
|
|
|
835
969
|
* Directory tasks can now take prerequisites and actions
|
|
836
970
|
|
|
@@ -1402,7 +1536,7 @@ The first argument is still the name of the task (:name in this case).
|
|
|
1402
1536
|
The next to argumements are the names of the parameters expected by
|
|
1403
1537
|
:name (:first_name and :last_name in the example).
|
|
1404
1538
|
|
|
1405
|
-
To access the values of the
|
|
1539
|
+
To access the values of the parameters, the block defining the task
|
|
1406
1540
|
behaviour can now accept a second parameter:
|
|
1407
1541
|
|
|
1408
1542
|
task :name, :first_name, :last_name do |t, args|
|
|
@@ -1505,7 +1639,7 @@ The first argument is still the name of the task (:name in this case).
|
|
|
1505
1639
|
The next to argumements are the names of the parameters expected by
|
|
1506
1640
|
:name (:first_name and :last_name in the example).
|
|
1507
1641
|
|
|
1508
|
-
To access the values of the
|
|
1642
|
+
To access the values of the parameters, the block defining the task
|
|
1509
1643
|
behaviour can now accept a second parameter:
|
|
1510
1644
|
|
|
1511
1645
|
task :name, :first_name, :last_name do |t, args|
|
|
@@ -1725,7 +1859,7 @@ are, I hope you enjoy them.
|
|
|
1725
1859
|
* RDoc defaults to internal (in-process) invocation. The old behavior
|
|
1726
1860
|
is still available by setting the +external+ flag to true.
|
|
1727
1861
|
* Rakefiles are now loaded with the expanded path to prevent
|
|
1728
|
-
accidental
|
|
1862
|
+
accidental pollution from the Ruby load path.
|
|
1729
1863
|
* Task objects my now be used in prerequisite lists directly.
|
|
1730
1864
|
* Task objects (in addition to task names) may now be included in the
|
|
1731
1865
|
prerequisite list of a task.
|
|
@@ -1738,7 +1872,7 @@ are, I hope you enjoy them.
|
|
|
1738
1872
|
===== Namespaces
|
|
1739
1873
|
|
|
1740
1874
|
Tasks can now be nested inside their own namespaces. Tasks within one
|
|
1741
|
-
namespace will not
|
|
1875
|
+
namespace will not accidentally interfer with tasks named in a different
|
|
1742
1876
|
namespace.
|
|
1743
1877
|
|
|
1744
1878
|
For example:
|
|
@@ -1796,7 +1930,7 @@ As usual, it was input from users that drove a alot of these changes.
|
|
|
1796
1930
|
The following people either contributed patches, made suggestions or
|
|
1797
1931
|
made otherwise helpful comments. Thanks to ...
|
|
1798
1932
|
|
|
1799
|
-
* Doug Young (
|
|
1933
|
+
* Doug Young (inspiration for the parallel task)
|
|
1800
1934
|
* David Heinemeier Hansson (for --trace message enhancement and for
|
|
1801
1935
|
pushing for namespace support).
|
|
1802
1936
|
* Ludvig Omholt (for the openAFS fix)
|