drake 0.8.4.1.2.1 → 0.8.5.0.2.2
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.
- data/Rakefile +11 -2
- data/doc/release_notes/rake-0.8.5.rdoc +53 -0
- data/lib/rake.rb +1 -1
- metadata +4 -2
data/Rakefile
CHANGED
@@ -139,17 +139,25 @@ end
|
|
139
139
|
|
140
140
|
# Create a task to build the RDOC documentation tree.
|
141
141
|
|
142
|
-
|
142
|
+
begin
|
143
|
+
require 'darkfish-rdoc'
|
144
|
+
DARKFISH_ENABLED = true
|
145
|
+
rescue LoadError => ex
|
146
|
+
DARKFISH_ENABLED = false
|
147
|
+
end
|
148
|
+
|
149
|
+
rd = Rake::RDocTask.new("rdoc") do |rdoc|
|
143
150
|
rdoc.rdoc_dir = 'html'
|
144
151
|
rdoc.template = 'doc/jamis.rb'
|
145
152
|
rdoc.title = "Drake: Distributed Rake"
|
146
153
|
rdoc.options << '--line-numbers' << '--inline-source' <<
|
147
154
|
'--main' << 'README' <<
|
148
155
|
'--title' << 'Drake: Distributed Rake'
|
156
|
+
rdoc.options << '-SHN' << '-f' << 'darkfish' if DARKFISH_ENABLED
|
149
157
|
rdoc.rdoc_files.include('README', 'MIT-LICENSE', 'TODO', 'CHANGES')
|
150
158
|
rdoc.rdoc_files.include('lib/**/*.rb', 'doc/**/*.rdoc')
|
151
159
|
rdoc.rdoc_files.exclude(/\bcontrib\b/)
|
152
|
-
|
160
|
+
end
|
153
161
|
|
154
162
|
# ====================================================================
|
155
163
|
# Create a task that will package the Rake software into distributable
|
@@ -168,6 +176,7 @@ PKG_FILES = FileList[
|
|
168
176
|
'doc/**/*'
|
169
177
|
]
|
170
178
|
PKG_FILES.exclude('doc/example/*.o')
|
179
|
+
PKG_FILES.exclude('TAGS')
|
171
180
|
PKG_FILES.exclude(%r{doc/example/main$})
|
172
181
|
|
173
182
|
if ! defined?(Gem)
|
@@ -0,0 +1,53 @@
|
|
1
|
+
= Rake 0.8.5 Released
|
2
|
+
|
3
|
+
Rake version 0.8.5 is a new release of Rake with greatly improved
|
4
|
+
support for executing commands on Windows. The "sh" command now has
|
5
|
+
the same semantics on Windows that it has on Unix based platforms.
|
6
|
+
|
7
|
+
== Changes
|
8
|
+
|
9
|
+
=== New Features / Enhancements in Version 0.8.5
|
10
|
+
|
11
|
+
* Improved implementation of the Rake system command for Windows.
|
12
|
+
(patch from James M. Lawrence/quix)
|
13
|
+
|
14
|
+
* Support for Ruby 1.9's improved system command. (patch from James
|
15
|
+
M. Lawrence/quix)
|
16
|
+
|
17
|
+
* Rake now includes the configured extension when invoking an
|
18
|
+
executable (Config::CONFIG['EXEEXT])
|
19
|
+
|
20
|
+
=== Bug Fixes in Version 0.8.5
|
21
|
+
|
22
|
+
* Environment variable keys are now correctly cased (it matters in
|
23
|
+
some implementations).
|
24
|
+
|
25
|
+
== What is Rake
|
26
|
+
|
27
|
+
Rake is a build tool similar to the make program in many ways. But
|
28
|
+
instead of cryptic make recipes, Rake uses standard Ruby code to
|
29
|
+
declare tasks and dependencies. You have the full power of a modern
|
30
|
+
scripting language built right into your build tool.
|
31
|
+
|
32
|
+
== Availability
|
33
|
+
|
34
|
+
The easiest way to get and install rake is via RubyGems ...
|
35
|
+
|
36
|
+
gem install rake (you may need root/admin privileges)
|
37
|
+
|
38
|
+
Otherwise, you can get it from the more traditional places:
|
39
|
+
|
40
|
+
Home Page:: http://rake.rubyforge.org/
|
41
|
+
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
42
|
+
GitHub:: git://github.com/jimweirich/rake.git
|
43
|
+
|
44
|
+
== Thanks
|
45
|
+
|
46
|
+
As usual, it was input from users that drove a alot of these changes. The
|
47
|
+
following people either contributed patches, made suggestions or made
|
48
|
+
otherwise helpful comments. Thanks to ...
|
49
|
+
|
50
|
+
* James M. Lawrence/quix
|
51
|
+
* Luis Lavena
|
52
|
+
|
53
|
+
-- Jim Weirich
|
data/lib/rake.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: drake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.5.0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James M. Lawrence
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-05-11 00:00:00 -04:00
|
13
13
|
default_executable: drake
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -53,6 +53,7 @@ extra_rdoc_files:
|
|
53
53
|
- doc/release_notes/rake-0.8.2.rdoc
|
54
54
|
- doc/release_notes/rake-0.8.3.rdoc
|
55
55
|
- doc/release_notes/rake-0.8.4.rdoc
|
56
|
+
- doc/release_notes/rake-0.8.5.rdoc
|
56
57
|
files:
|
57
58
|
- install.rb
|
58
59
|
- CHANGES
|
@@ -170,6 +171,7 @@ files:
|
|
170
171
|
- doc/release_notes/rake-0.8.2.rdoc
|
171
172
|
- doc/release_notes/rake-0.8.3.rdoc
|
172
173
|
- doc/release_notes/rake-0.8.4.rdoc
|
174
|
+
- doc/release_notes/rake-0.8.5.rdoc
|
173
175
|
has_rdoc: true
|
174
176
|
homepage: http://drake.rubyforge.org
|
175
177
|
post_install_message:
|