spline 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/spline +11 -9
- data/lib/spline/version.rb +1 -1
- data/lib/spline.rb +1 -8
- data/vendor/bundle/ruby/2.1.0/bin/rake +23 -0
- data/vendor/bundle/ruby/2.1.0/bin/spline +23 -0
- data/vendor/bundle/ruby/2.1.0/build_info/rake-10.3.2.info +1 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/.autotest +7 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/.gemtest +0 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/.rubocop.yml +27 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/.togglerc +7 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/CONTRIBUTING.rdoc +34 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/History.rdoc +609 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/MIT-LICENSE +21 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/Manifest.txt +162 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/README.rdoc +137 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/Rakefile +81 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/bin/rake +33 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/alt_system.rb +110 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/application.rb +783 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/backtrace.rb +23 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/clean.rb +76 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/cloneable.rb +16 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/.document +0 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/compositepublisher.rb +21 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/ftptools.rb +137 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/publisher.rb +81 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/sshpublisher.rb +61 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/sys.rb +4 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/cpu_counter.rb +109 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/default_loader.rb +14 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/dsl_definition.rb +198 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/early_time.rb +21 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ext/core.rb +25 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ext/module.rb +1 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ext/string.rb +173 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ext/time.rb +15 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_creation_task.rb +24 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_list.rb +414 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_task.rb +46 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_utils.rb +116 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_utils_ext.rb +144 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/gempackagetask.rb +4 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/invocation_chain.rb +56 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/invocation_exception_mixin.rb +16 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/linked_list.rb +103 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/loaders/makefile.rb +40 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/multi_task.rb +13 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/name_space.rb +38 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/packagetask.rb +202 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/pathmap.rb +3 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/phony.rb +15 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/private_reader.rb +20 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/promise.rb +99 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/pseudo_status.rb +29 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/rake_module.rb +38 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/rake_test_loader.rb +22 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/rdoctask.rb +4 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ruby182_test_unit_fix.rb +29 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/runtest.rb +27 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/scope.rb +42 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/task.rb +383 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/task_argument_error.rb +7 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/task_arguments.rb +98 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/task_manager.rb +310 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/tasklib.rb +24 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/testtask.rb +212 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/thread_history_display.rb +48 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/thread_pool.rb +164 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/trace_output.rb +22 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/version.rb +7 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake/win32.rb +56 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/lib/rake.rb +78 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/rakelib/publish.rake +20 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/rakelib/test_times.rake +25 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/file_creation.rb +34 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/helper.rb +127 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/support/rakefile_definitions.rb +478 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/support/ruby_runner.rb +33 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_private_reader.rb +42 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake.rb +40 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_application.rb +641 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_application_options.rb +466 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_backtrace.rb +119 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_clean.rb +55 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_cpu_counter.rb +50 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_definitions.rb +79 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_directory_task.rb +63 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_dsl.rb +40 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_early_time.rb +31 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_extension.rb +59 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_creation_task.rb +56 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_list.rb +627 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_list_path_map.rb +8 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_task.rb +186 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_utils.rb +309 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_ftp_file.rb +74 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_functional.rb +482 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_invocation_chain.rb +64 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_linked_list.rb +84 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_makefile_loader.rb +46 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_multi_task.rb +58 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_name_space.rb +57 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_package_task.rb +79 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_path_map.rb +168 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_path_map_explode.rb +34 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_path_map_partial.rb +18 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_pseudo_status.rb +21 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_rake_test_loader.rb +20 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_reduce_compat.rb +26 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_require.rb +40 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_rules.rb +388 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_scope.rb +44 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task.rb +392 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_argument_parsing.rb +109 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_arguments.rb +127 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_lib.rb +9 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_manager.rb +178 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_manager_argument_resolution.rb +19 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_with_arguments.rb +171 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_test_task.rb +141 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_thread_pool.rb +142 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_top_level_functions.rb +71 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_win32.rb +72 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_thread_history_display.rb +101 -0
- data/vendor/bundle/ruby/2.1.0/gems/rake-10.3.2/test/test_trace_output.rb +52 -0
- data/vendor/bundle/ruby/2.1.0/specifications/rake-10.3.2.gemspec +45 -0
- metadata +127 -2
@@ -0,0 +1,609 @@
|
|
1
|
+
=== 10.3.2 / 2014-05-15
|
2
|
+
|
3
|
+
Bug fixes:
|
4
|
+
|
5
|
+
* Rake no longer infinitely loops when showing exception causes that refer to
|
6
|
+
each other. Bug #272 by Chris Bandy.
|
7
|
+
* Fixed documentation typos. Bug #275 by Jake Worth.
|
8
|
+
|
9
|
+
=== 10.3.1 / 2014-04-17
|
10
|
+
|
11
|
+
Bug fixes:
|
12
|
+
|
13
|
+
* Really stop reporting an error when cleaning already-deleted files. Pull
|
14
|
+
request #269 by Randy Coulman
|
15
|
+
* Fixed infinite loop when cleaning already-deleted files on windows.
|
16
|
+
|
17
|
+
=== 10.3 / 2014-04-15
|
18
|
+
|
19
|
+
Enhancements:
|
20
|
+
|
21
|
+
* Added --build-all option to rake which treats all file prerequisites as
|
22
|
+
out-of-date. Pull request #254 by Andrew Gilbert.
|
23
|
+
* Added Rake::NameSpace#scope. Issue #263 by Jon San Miguel.
|
24
|
+
|
25
|
+
Bug fixes:
|
26
|
+
|
27
|
+
* Suppress org.jruby package files in rake error messages for JRuby users.
|
28
|
+
Issue #213 by Charles Nutter.
|
29
|
+
* Fixed typo, removed extra "h". Pull request #267 by Hsing-Hui Hsu.
|
30
|
+
* Rake no longer reports an error when cleaning already-deleted files. Pull
|
31
|
+
request #266 by Randy Coulman.
|
32
|
+
* Consume stderr while determining CPU count to avoid hang. Issue #268 by
|
33
|
+
Albert Sun.
|
34
|
+
|
35
|
+
=== 10.2.2 / 2014-03-27
|
36
|
+
|
37
|
+
Bug fixes:
|
38
|
+
|
39
|
+
* Restored Ruby 1.8.7 compatibility
|
40
|
+
|
41
|
+
=== 10.2.1 / 2014-03-25
|
42
|
+
|
43
|
+
Bug fixes:
|
44
|
+
|
45
|
+
* File tasks including a ':' are now top-level tasks again. Issue #262 by
|
46
|
+
Josh Holtrop.
|
47
|
+
* Use sysctl for CPU count for all BSDs. Pull request #261 by Joshua Stein.
|
48
|
+
* Fixed CPU detection for unknown platforms.
|
49
|
+
|
50
|
+
=== 10.2.0 / 2014-03-24
|
51
|
+
|
52
|
+
Enhancements:
|
53
|
+
|
54
|
+
* Rake now requires Ruby 1.9 or newer. For me, this is a breaking change, but
|
55
|
+
it seems that Jim planned to release it with Rake 10.2. See also pull
|
56
|
+
request #247 by Philip Arndt.
|
57
|
+
* Rake now allows you to declare tasks under a namespace like:
|
58
|
+
|
59
|
+
task 'a:b' do ... end
|
60
|
+
|
61
|
+
Pull request #232 by Judson Lester.
|
62
|
+
* Task#source defaults to the first prerequisite in non-rule tasks. Pull
|
63
|
+
request #215 by Avdi Grimm.
|
64
|
+
* Rake now automatically rebuilds and reloads imported files. Pull request
|
65
|
+
#209 by Randy Coulman.
|
66
|
+
* The rake task arguments can contain escaped commas. Pull request #214 by
|
67
|
+
Filip Hrbek.
|
68
|
+
* Rake now prints the exception class on errors. Patch #251 by David Cornu.
|
69
|
+
|
70
|
+
Bug fixes:
|
71
|
+
|
72
|
+
* Fixed typos. Pull request #256 by Valera Rozuvan, #250 via Jake Worth, #260
|
73
|
+
by Zachary Scott.
|
74
|
+
* Fixed documentation for calling tasks with arguments. Pull request #235 by
|
75
|
+
John Varghese.
|
76
|
+
* Clarified `rake -f` usage message. Pull request #252 by Marco Pfatschbacher.
|
77
|
+
* Fixed a test failure on windows. Pull request #231 by Hiroshi Shirosaki.
|
78
|
+
* Fixed corrupted rake.1.gz. Pull request #225 by Michel Boaventura.
|
79
|
+
* Fixed bug in can_detect_signals? in test. Patch from #243 by Alexey
|
80
|
+
Borzenkov.
|
81
|
+
|
82
|
+
=== 10.1.1 and earlier
|
83
|
+
|
84
|
+
Additions to the old CHANGES file were not made consistently so some
|
85
|
+
versions are missing from this file. These changes are usually described in
|
86
|
+
the individual release notes files.
|
87
|
+
|
88
|
+
=== 0.9.3
|
89
|
+
|
90
|
+
* The rake test loader now removes arguments it has processed. Issue #51
|
91
|
+
* Rake::TaskArguments now responds to #values_at
|
92
|
+
* RakeFileUtils.verbose_flag = nil silences output the same as 0.8.7
|
93
|
+
* Rake tests are now directory-independent
|
94
|
+
* Rake tests are no longer require flexmock
|
95
|
+
* Commands constant is no longer polluting top level namespace.
|
96
|
+
* Show only the interesting portion of the backtrace by default (James M. Lawrence).
|
97
|
+
* Added --reduce-compat optiont to remove backward compatible DSL hacks (James M. Lawrence).
|
98
|
+
* lib/rake/file_list.rb (Rake::FileList#egrep): there is no need to
|
99
|
+
open files in binary mode. (NAKAMURA Usaku)
|
100
|
+
|
101
|
+
=== 0.9.2
|
102
|
+
|
103
|
+
* Unknown
|
104
|
+
|
105
|
+
=== 0.9.1
|
106
|
+
|
107
|
+
* Added deprecation warnings to the Rake DSL methods.
|
108
|
+
|
109
|
+
=== 0.9.0
|
110
|
+
|
111
|
+
* *Incompatible* *change*: Rake DSL commands ('task', 'file', etc.) are
|
112
|
+
no longer private methods in Object. If you need to call 'task :xzy' inside
|
113
|
+
your class, include Rake::DSL into the class. The DSL is still available at
|
114
|
+
the top level scope (via the top level object which extends Rake::DSL).
|
115
|
+
|
116
|
+
* Rake now warns when the deprecated :needs syntax used.
|
117
|
+
|
118
|
+
* Rake history is now UTF-8 encoded.
|
119
|
+
|
120
|
+
* Rake now uses case-insensitive comparisons to find the Rakefile on Windows.
|
121
|
+
Based on patch by Roger Pack.
|
122
|
+
|
123
|
+
* Rake now requires (instead of loads) files in the test task. Patch by Cezary
|
124
|
+
Baginski.
|
125
|
+
|
126
|
+
* Fixed typos. Patches by Sean Scot August Moon and R.T. Lechow.
|
127
|
+
|
128
|
+
* Rake now prints the Rakefile directory only when it's different from the
|
129
|
+
current directory. Patch by Alex Chaffee.
|
130
|
+
|
131
|
+
* Improved rakefile_location discovery on Windows. Patch by James Tucker.
|
132
|
+
|
133
|
+
* Rake now recognizes "Windows Server" as a windows system. Patch by Matthias
|
134
|
+
Lüdtke
|
135
|
+
|
136
|
+
* Rake::RDocTask is deprecated. Use RDoc::Task from RDoc 2.4.2+ (require
|
137
|
+
'rdoc/task')
|
138
|
+
|
139
|
+
* Rake::GemPackageTask is deprecated. Use Gem::PackageTask (require
|
140
|
+
'rubygems/package_task')
|
141
|
+
|
142
|
+
* Rake now outputs various messages to $stderr instead of $stdout.
|
143
|
+
|
144
|
+
* Rake no longer emits warnings for Config. Patch by Santiago Pastorino.
|
145
|
+
|
146
|
+
* Split rake.rb into individual files.
|
147
|
+
|
148
|
+
* Support for the --where (-W) flag for showing where a task is defined.
|
149
|
+
|
150
|
+
* Fixed quoting in test task.
|
151
|
+
(http://onestepback.org/redmine/issues/show/44,
|
152
|
+
http://www.pivotaltracker.com/story/show/1223138)
|
153
|
+
|
154
|
+
* Fixed the silent option parsing problem.
|
155
|
+
(http://onestepback.org/redmine/issues/show/47)
|
156
|
+
|
157
|
+
* Fixed :verbose=>false flag on sh and ruby commands.
|
158
|
+
|
159
|
+
* Rake command line options may be given by default in a RAKEOPT
|
160
|
+
environment variable.
|
161
|
+
|
162
|
+
* Errors in Rake will now display the task invocation chain in effect
|
163
|
+
at the time of the error.
|
164
|
+
|
165
|
+
* Accepted change by warnickr to not expand test patterns in shell
|
166
|
+
(allowing more files in the test suite).
|
167
|
+
|
168
|
+
* Fixed that file tasks did not perform prereq lookups in scope
|
169
|
+
(Redmine #57).
|
170
|
+
|
171
|
+
=== 0.8.7
|
172
|
+
|
173
|
+
* Fixed EXEEXT for JRuby on windows.
|
174
|
+
|
175
|
+
=== 0.8.6
|
176
|
+
|
177
|
+
* Minor fixes to the RDoc generation (removed dependency on darkfish
|
178
|
+
and removed inline source option).
|
179
|
+
|
180
|
+
* Now allow # comments to comment a task definition.
|
181
|
+
|
182
|
+
=== 0.8.5
|
183
|
+
|
184
|
+
* Better support for the system command on Windows.
|
185
|
+
|
186
|
+
=== 0.8.4
|
187
|
+
|
188
|
+
* Preserve case when locating rakefiles (patch from James
|
189
|
+
M. Lawrence/quix)
|
190
|
+
|
191
|
+
* Better support for windows paths in the test task (patch from Simon
|
192
|
+
Chiang/bahuvrihi)
|
193
|
+
|
194
|
+
* Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH,
|
195
|
+
APPDATA, USERPROFILE (patch from Luis Lavena)
|
196
|
+
|
197
|
+
* MingGW is now recognized as a windows platform. (patch from Luis
|
198
|
+
Lavena)
|
199
|
+
|
200
|
+
* Numerous fixes to the windows test suite (patch from Luis Lavena).
|
201
|
+
|
202
|
+
* Improved Rakefile case insensitivity testing (patch from Luis
|
203
|
+
Lavena).
|
204
|
+
|
205
|
+
* Fixed stray ARGV option problem that was interfering with
|
206
|
+
Test::Unit::Runner.
|
207
|
+
|
208
|
+
* Fixed default verbose mode (was accidently changed to false).
|
209
|
+
|
210
|
+
* Removed reference to manage_gem to fix the warning produced by the
|
211
|
+
gem package task.
|
212
|
+
|
213
|
+
=== 0.8.3
|
214
|
+
|
215
|
+
* Enhanced the system directory detection in windows. We now check
|
216
|
+
HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
|
217
|
+
supplied by James Tucker). Rake no long aborts if it can't find the
|
218
|
+
directory.
|
219
|
+
|
220
|
+
* Added fix to handle ruby installations in directories with spaces in
|
221
|
+
their name.
|
222
|
+
|
223
|
+
=== 0.8.2
|
224
|
+
|
225
|
+
* Fixed bug in package task so that it will include the subdir
|
226
|
+
directory in the package for testing. (Bug found by Adam Majer)
|
227
|
+
|
228
|
+
* Added ENV var to rakefile to prevent OS X from including extended
|
229
|
+
attribute junk in a tar file. (Bug found by Adam Majer)
|
230
|
+
|
231
|
+
* Fixed filename dependency order bug in test_inspect_pending and
|
232
|
+
test_to_s_pending. (Bug found by Adam Majer)
|
233
|
+
|
234
|
+
* Fixed check for file utils options to make them immune to the
|
235
|
+
symbol/string differences. (Patch supplied by Edwin Pratomo)
|
236
|
+
|
237
|
+
* Fixed bug with rules involving multiple source (Patch supplied by
|
238
|
+
Emanuel Indermühle)
|
239
|
+
|
240
|
+
* Switched from getoptlong to optparse (patches supplied by Edwin
|
241
|
+
Pratomo)
|
242
|
+
|
243
|
+
* The -T option will now attempt to dynamically sense the size of the
|
244
|
+
terminal. RAKE_COLUMNS will override any dynamic sensing.
|
245
|
+
|
246
|
+
* FileList#clone and FileList#dup have better sematics w.r.t. taint
|
247
|
+
and freeze.
|
248
|
+
|
249
|
+
* Added ability clear prerequisites, and/or actions from an existing
|
250
|
+
task.
|
251
|
+
|
252
|
+
* Added the ability to reenable a task to be invoked a second time.
|
253
|
+
|
254
|
+
* Changed RDoc test task to have no default template. This makes it
|
255
|
+
easier for the tempate to pick up the template from the environment.
|
256
|
+
|
257
|
+
* Changed from using Mutex to Monitor. Evidently Mutex causes thread
|
258
|
+
join errors when Ruby is compiled with -disable-pthreads. (Patch
|
259
|
+
supplied by Ittay Dror)
|
260
|
+
|
261
|
+
* Fixed bug in makefile parser that had problems with extra spaces in
|
262
|
+
file task names. (Patch supplied by Ittay Dror)
|
263
|
+
|
264
|
+
* Added a performance patch for reading large makefile dependency
|
265
|
+
files. (Patch supplied by Ittay Dror)
|
266
|
+
|
267
|
+
* Default values for task arguments can easily be specified with the
|
268
|
+
:with_defaults method. (Idea for default argument merging supplied
|
269
|
+
by (Adam Q. Salter)
|
270
|
+
|
271
|
+
* The -T output will only self-truncate if the output is a tty.
|
272
|
+
However, if RAKE_COLUMNS is explicitly set, it will be honored in
|
273
|
+
any case. (Patch provided by Gavin Stark).
|
274
|
+
|
275
|
+
* Numerous fixes for running under windows. A big thanks to Bheeshmar
|
276
|
+
Redheendran for spending a good part of the afternoon at the
|
277
|
+
Lonestar Ruby Conference to help me work out these issues.
|
278
|
+
|
279
|
+
=== 0.8.1
|
280
|
+
|
281
|
+
* Removed requires on parsedate.rb (in Ftptools)
|
282
|
+
* Removed ftools from rake.rb. Made it options in sys.rb
|
283
|
+
|
284
|
+
=== 0.8.0
|
285
|
+
|
286
|
+
* Added task parameters (e.g. "rake build[version7]")
|
287
|
+
* Made task parameters passable to prerequisites.
|
288
|
+
* Comments are limited to 80 columns or so (suggested by Jamis Buck).
|
289
|
+
* Added -D to display full comments (suggested by Jamis Buck).
|
290
|
+
* The rake program will set the status value used in any explicit
|
291
|
+
exit(n) calls. (patch provided by Stephen Touset)
|
292
|
+
* Fixed error in functional tests that were not including session (and
|
293
|
+
silently skipping the functionl tests.
|
294
|
+
* Removed --usage and make -h the same as -H.
|
295
|
+
* Make a prettier inspect for tasks.
|
296
|
+
|
297
|
+
=== 0.7.3
|
298
|
+
|
299
|
+
* Added existing and existing! methods to FileList
|
300
|
+
* FileLists now claim to be Arrays (via is_a?) to get better support
|
301
|
+
from the FileUtil module.
|
302
|
+
* Added init and top_level for custom rake applications.
|
303
|
+
|
304
|
+
=== 0.7.2
|
305
|
+
|
306
|
+
* Error messages are now send to stderr rather than stdout (from
|
307
|
+
Payton Quackenbush).
|
308
|
+
* Better error handling on invalid command line arguments (from Payton
|
309
|
+
Quackenbush).
|
310
|
+
* Added rcov task and updated unit testing for better code coverage.
|
311
|
+
* Fixed some bugs where the application object was going to the global
|
312
|
+
appliation instead of using its own data.
|
313
|
+
* Added square and curly bracket patterns to FileList#include (Tilman
|
314
|
+
Sauerbeck).
|
315
|
+
* Added plain filename support to rule dependents (suggested by Nobu
|
316
|
+
Nakada).
|
317
|
+
* Added pathmap support to rule dependents.
|
318
|
+
* Added a 'tasks' method to a namespace to get a list of tasks
|
319
|
+
associated with the namespace.
|
320
|
+
* Fixed the method name leak from FileUtils (bug found by Glenn
|
321
|
+
Vanderburg).
|
322
|
+
* Added rake_extension to handle detection of extension collisions.
|
323
|
+
* Added test for noop, bad_option and verbose flags to sh command.
|
324
|
+
* Removed dependency on internal fu_xxx functions from FileUtils.
|
325
|
+
* Added a 'shame' task to the Rakefile.
|
326
|
+
* Added tar_command and zip_command options to the Package task.
|
327
|
+
* Added a description to the gem task in GemPackageTask.
|
328
|
+
* Fixed a bug when rules have multiple prerequisites (patch by Joel
|
329
|
+
VanderWerf)
|
330
|
+
* Added a protected 'require "rubygems"' to test/test_application to
|
331
|
+
unbreak cruisecontrol.rb.
|
332
|
+
* Added the handful of RakeFileUtils to the private method as well.
|
333
|
+
* Added block based exclusion.
|
334
|
+
* The clean task will no longer delete 'core' if it is a directory.
|
335
|
+
* Removed rake_dup. Now we just simply rescue a bad dup.
|
336
|
+
* Refactored the FileList reject logic to remove duplication.
|
337
|
+
* Removed if __FILE__ at the end of the rake.rb file.
|
338
|
+
|
339
|
+
=== 0.7.1
|
340
|
+
|
341
|
+
* Added optional filter parameter to the --tasks command line option.
|
342
|
+
* Added flatten to allow rule transform procs to return lists of
|
343
|
+
prereqs (Joel VanderWerf provided patch).
|
344
|
+
* Added pathmap to String and FileList.
|
345
|
+
* The -r option will now load .rake files (but a straight require
|
346
|
+
doesn't yet). NOTE: This is experimental ... it may be
|
347
|
+
discontinued.
|
348
|
+
* The -f option without a value will disable the search for a
|
349
|
+
Rakefile. The assumption is that the -r files are adequate.
|
350
|
+
* Fixed the safe_ln function to fall back to cp in more error
|
351
|
+
scenarios.
|
352
|
+
|
353
|
+
=== 0.7.0
|
354
|
+
|
355
|
+
* Added Rake.original_dir to return the original starting directory of
|
356
|
+
the rake application.
|
357
|
+
* Added safe_ln support for openAFS (from Ludvig Omholt).
|
358
|
+
* Added --trace reminder on short exception messages (David Heinemeier
|
359
|
+
Hansson suggestion).
|
360
|
+
* Added multitask declaration that executes prerequisites in
|
361
|
+
parallel. (Doug Young providied an initial implementation).
|
362
|
+
* Fixed missing_const hack to be compatible with Rails. (Jamis Buck
|
363
|
+
supplied test case).
|
364
|
+
* Made the RDoc task default to internal (in-process) RDoc formatting.
|
365
|
+
The old behavior is still available by setting the +external+ flag
|
366
|
+
to true.
|
367
|
+
* Rakefiles are now loaded with the expanded path to prevent
|
368
|
+
accidental polution from the Ruby load path.
|
369
|
+
* The +namespace+ command now returns a NameSpace object that can be
|
370
|
+
used to lookup tasks defined in that namespace. This allows for
|
371
|
+
better anonymous namespace behavior.
|
372
|
+
* Task objects my now be used in prerequisite lists directly.
|
373
|
+
|
374
|
+
=== 0.6.1
|
375
|
+
|
376
|
+
* Rebuilt 0.6.0 gem without signing.
|
377
|
+
|
378
|
+
=== 0.6.0
|
379
|
+
|
380
|
+
* Fixed file creation bug in the unit tests (caused infinite loop on
|
381
|
+
windows).
|
382
|
+
* Fixed bug where session based functional tests were run under
|
383
|
+
windows.
|
384
|
+
* Fixed bug in directory tasks so that updating a directory will not
|
385
|
+
retrigger file tasks depending on the directory (see
|
386
|
+
FileCreationTask and EarlyTime).
|
387
|
+
* Added egrep to FileList
|
388
|
+
* ruby command now runs same ruby version as rake.
|
389
|
+
* Added investigation to task object. (suggested by Martin Fowler)
|
390
|
+
* Added ruby_opts to the test task to allow arbitrary ruby options to
|
391
|
+
be passed to the test script. (Greg Fast)
|
392
|
+
* Fixed the test loader to ignore options. (Greg Fast)
|
393
|
+
* Moved Task, FileTask, FileCreationTask and RakeApp into the Rake
|
394
|
+
module namespace. Old style namespace behavior can be invoked via
|
395
|
+
the --classic-namespace option. (requested by Kelly Felkins).
|
396
|
+
* GemTask is now sensitive to the gem platform (Masao Mutoh).
|
397
|
+
* A non-existing file prerequisite will no longer cause an exception
|
398
|
+
(Philipp Neubeck).
|
399
|
+
* Multiple prerequisites on Rake rules now allowed (initial patch
|
400
|
+
supplied by Stuart Jansen).
|
401
|
+
|
402
|
+
=== 0.5.4
|
403
|
+
|
404
|
+
* Added double quotes to the test runner.
|
405
|
+
* Added .svn to default ignore list.
|
406
|
+
* Updated FileList#include to support nested arrays and filelists.
|
407
|
+
|
408
|
+
=== 0.5.3
|
409
|
+
|
410
|
+
* Added support for importing Rakefile and other dependencies.
|
411
|
+
* Fixed bug so that now rules can chain off of existing tasks as well
|
412
|
+
as existing files.
|
413
|
+
* Fixed verbose flag bug in the testing task. Shortened some failure
|
414
|
+
messages.
|
415
|
+
* Make FileUtils methods private at the top level module to avoid
|
416
|
+
accidental method leaking into other objects.
|
417
|
+
* Added test loader option to test task. "testrb" is no longer the
|
418
|
+
default test loader. It is now eating syntax errors that should
|
419
|
+
halt the unit tests.
|
420
|
+
* Revamped FileList so that it works more like and array (addressed
|
421
|
+
flatten bug). Added many tests around file list.
|
422
|
+
* Added +ext+ method to both String and FileList.
|
423
|
+
|
424
|
+
=== 0.5.0
|
425
|
+
|
426
|
+
* Fixed documentation that was lacking the Rake module name (Tilman
|
427
|
+
Sauerbeck).
|
428
|
+
* Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
|
429
|
+
* Recursive rules are now supported (Tilman Sauerbeck).
|
430
|
+
* Added warning option for the Test Task (requested by Eric Hodel).
|
431
|
+
* The jamis rdoc template is only used if it exists.
|
432
|
+
* Added fix for Ruby 1.8.2 test/unit and rails problem.
|
433
|
+
* Added contributed rake man file (Jani Monoses).
|
434
|
+
* Added Brian Candler's fix for problems in --trace and --dry-run
|
435
|
+
mode.
|
436
|
+
|
437
|
+
=== 0.4.15
|
438
|
+
|
439
|
+
* Fixed a bug that prevented the TESTOPTS flag from working with the
|
440
|
+
revised for 1.8.2 test task.
|
441
|
+
* Updated the docs on --trace to indicate that it also enables a full
|
442
|
+
backtrace on errors.
|
443
|
+
|
444
|
+
=== 0.4.14
|
445
|
+
|
446
|
+
* Modified the TestTask to workaround the Ruby 1.8.2 change in
|
447
|
+
autoexecuting unit tests.
|
448
|
+
|
449
|
+
=== 0.4.13
|
450
|
+
|
451
|
+
* Fixed the dry-run flag so it is operating again.
|
452
|
+
* Multiple arguments to sh and ruby commands will not be interpreted
|
453
|
+
by the shell (patch provided by Jonathan Paisley).
|
454
|
+
|
455
|
+
=== 0.4.12
|
456
|
+
|
457
|
+
* Added --silent (-s) to suppress the (in directory) rake message.
|
458
|
+
|
459
|
+
=== 0.4.11
|
460
|
+
|
461
|
+
* Changed the "don't know how to rake" message (finally)
|
462
|
+
* Changes references to a literal "Rakefile" to reference the global
|
463
|
+
variable $rakefile (which contains the actual name of the rakefile).
|
464
|
+
|
465
|
+
=== 0.4.10
|
466
|
+
|
467
|
+
* Added block support to the "sh" command, allowing users to take
|
468
|
+
special actions on the result of the system call. E.g.
|
469
|
+
|
470
|
+
sh "shell_command" do |ok, res|
|
471
|
+
puts "Program returned #{res.exitstatus}" if ! ok
|
472
|
+
end
|
473
|
+
|
474
|
+
=== 0.4.9
|
475
|
+
|
476
|
+
* Switched to Jamis Buck's RDoc template.
|
477
|
+
* Removed autorequire from Rake's gem spec. This prevents the Rake
|
478
|
+
libraries from loading while using rails.
|
479
|
+
|
480
|
+
=== 0.4.8
|
481
|
+
|
482
|
+
* Added support for .rb versions of Rakefile.
|
483
|
+
* Removed \\\n's from test task.
|
484
|
+
* Fixed Ruby 1.9 compatibility issue with FileList.
|
485
|
+
|
486
|
+
=== 0.4.7
|
487
|
+
|
488
|
+
* Fixed problem in FileList that caused Ruby 1.9 to go into infinite
|
489
|
+
recursion. Since to_a was removed from Object, it does not need to
|
490
|
+
added back into the list of methods to rewrite in FileList. (Thanks
|
491
|
+
to Kent Sibilev for pointing this out).
|
492
|
+
|
493
|
+
=== 0.4.6
|
494
|
+
* Removed test version of ln in FileUtils that prevented safe_ln from
|
495
|
+
using ln.
|
496
|
+
|
497
|
+
=== 0.4.5
|
498
|
+
* Upgraded comments in TestTask.
|
499
|
+
* FileList to_s and inspect now automatically resolve pending changes.
|
500
|
+
* FileList#exclude properly returns the FileList.
|
501
|
+
|
502
|
+
=== 0.4.4
|
503
|
+
* Fixed initialization problem with @comment.
|
504
|
+
* Now using multi -r technique in TestTask. Switch Rakefile back to
|
505
|
+
using the built-in test task macros because the rake runtime is no
|
506
|
+
longer needed.
|
507
|
+
* Added 'TEST=filename' and 'TESTOPTS=options' to the Test Task
|
508
|
+
macros.
|
509
|
+
* Allow a +test_files+ attribute in test tasks. This allows more
|
510
|
+
flexibility in specifying test files.
|
511
|
+
|
512
|
+
=== 0.4.3
|
513
|
+
* Fixed Comment leakage.
|
514
|
+
|
515
|
+
=== 0.4.2
|
516
|
+
* Added safe_ln that falls back to a copy if a file link is not supported.
|
517
|
+
* Package builder now uses safe_ln.
|
518
|
+
|
519
|
+
=== 0.4.1
|
520
|
+
* Task comments are now additive, combined with "/".
|
521
|
+
* Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)
|
522
|
+
|
523
|
+
=== 0.4.0
|
524
|
+
* FileList now uses deferred loading. The file system is not searched
|
525
|
+
until the first call that needs the file names.
|
526
|
+
* VAR=VALUE options are now accepted on the command line and are
|
527
|
+
treated like environment variables. The values may be tested in a
|
528
|
+
Rakefile by referencing ENV['VAR'].
|
529
|
+
* File.mtime is now used (instead of File.new().mtime).
|
530
|
+
|
531
|
+
=== 0.3.2.x
|
532
|
+
|
533
|
+
* Removed some hidden dependencies on rubygems. Tests now will test
|
534
|
+
gems only if they are installed.
|
535
|
+
* Removed Sys from some example files. I believe that is that last
|
536
|
+
reference to Sys outside of the contrib area.
|
537
|
+
* Updated all copyright notices to include 2004.
|
538
|
+
|
539
|
+
=== 0.3.2
|
540
|
+
|
541
|
+
* GEM Installation now works with the application stub.
|
542
|
+
|
543
|
+
=== 0.3.1
|
544
|
+
|
545
|
+
* FileLists now automatically ignore CVS, .bak, !
|
546
|
+
* GEM Installation now works.
|
547
|
+
|
548
|
+
=== 0.3.0
|
549
|
+
|
550
|
+
Promoted 0.2.10.
|
551
|
+
|
552
|
+
=== 0.2.10
|
553
|
+
General
|
554
|
+
|
555
|
+
* Added title to Rake's rdocs
|
556
|
+
* Contrib packages are no longer included in the documentation.
|
557
|
+
|
558
|
+
RDoc Issues
|
559
|
+
|
560
|
+
* Removed default for the '--main' option
|
561
|
+
* Fixed rendering of the rdoc options
|
562
|
+
* Fixed clean/clobber confusion with rerdoc
|
563
|
+
* 'title' attribute added
|
564
|
+
|
565
|
+
Package Task Library Issues
|
566
|
+
|
567
|
+
* Version (or explicit :noversion) is required.
|
568
|
+
* +package_file+ attribute is now writable
|
569
|
+
|
570
|
+
FileList Issues
|
571
|
+
|
572
|
+
* Dropped bang version of exclude. Now using ant-like include/exclude semantics.
|
573
|
+
* Enabled the "yield self" idiom in FileList#initialize.
|
574
|
+
|
575
|
+
=== 0.2.9
|
576
|
+
|
577
|
+
This version contains numerous changes as the RubyConf.new(2003)
|
578
|
+
presentation was being prepared. The changes include:
|
579
|
+
|
580
|
+
* The monolithic rubyapp task library is in the process of being
|
581
|
+
dropped in favor of lighter weight task libraries.
|
582
|
+
|
583
|
+
=== 0.2.7
|
584
|
+
|
585
|
+
* Added "desc" for task descriptions.
|
586
|
+
* -T will now display tasks with descriptions.
|
587
|
+
* -P will display tasks and prerequisites.
|
588
|
+
* Dropped the Sys module in favor of the 1.8.x FileUtils module. Sys
|
589
|
+
is still supported in the contrib area.
|
590
|
+
|
591
|
+
=== 0.2.6
|
592
|
+
|
593
|
+
* Moved to RubyForge
|
594
|
+
|
595
|
+
=== 0.2.5
|
596
|
+
|
597
|
+
* Switched to standard ruby app builder.
|
598
|
+
* Added no_match option to file matcher.
|
599
|
+
|
600
|
+
=== 0.2.4
|
601
|
+
|
602
|
+
* Fixed indir, which neglected to actually change directories.
|
603
|
+
|
604
|
+
=== 0.2.3
|
605
|
+
|
606
|
+
* Added rake module for a help target
|
607
|
+
* Added 'for_files' to Sys
|
608
|
+
* Added a $rakefile constant
|
609
|
+
* Added test for selecting proper rule with multiple targets.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
Copyright (c) Jim Weirich
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
+
|