Skip to content

Commit

Permalink
bumbed version to 0.7.99.5
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://rubyforge.org/var/svn/rake/trunk@622 5af023f1-ac1a-0410-98d6-829a145c37ef
  • Loading branch information
jimweirich committed Dec 21, 2007
1 parent 32fef52 commit 4770893
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions lib/rake.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# as a library via a require statement, but it can be distributed
# independently as an application.

RAKEVERSION = '0.7.99.4'
RAKEVERSION = '0.7.99.5'

require 'rbconfig'
require 'ftools'
Expand Down Expand Up @@ -582,7 +582,7 @@ def add_comment(comment)
@full_comment = ''
end
@full_comment << comment
if @full_comment =~ /\A([^.]+?\.)/
if @full_comment =~ /\A([^.]+?\.)( |$)/
@comment = $1
else
@comment = @full_comment
Expand Down Expand Up @@ -1641,8 +1641,7 @@ def synthesize_file_task(task_name)
end

# Resolve the arguments for a task/rule. Returns a triplet of
# [task_name, arg_list, dependencies_list].
# TODO: Rework this to handle arguments
# [task_name, arg_name_list, prerequisites].
def resolve_args(args)
task_name = args.shift
arg_names = args #.map { |a| a.to_sym }
Expand Down
6 changes: 3 additions & 3 deletions rakelib/ruby19.rake
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ namespace "ruby19" do
Ruby19.run_tests(test_files)
end

desc "Run the unit tests in Ruby 1.9"
desc "Run the functional tests in Ruby 1.9"
task :functionals => [:env19] do
test_files = FileList['test/functional.rb']
Ruby19.run_tests(test_files)
end

desc "Run the unit tests in Ruby 1.9"
task :functionals => [:env19] do
desc "Run the all the tests in Ruby 1.9"
task :all => [:env19] do
test_files = FileList['test/functional.rb', 'test/test_*.rb']
Ruby19.run_tests(test_files)
end
Expand Down

0 comments on commit 4770893

Please sign in to comment.