summaryrefslogtreecommitdiff
path: root/rake_tasks
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2011-08-19 03:23:19 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2011-08-19 03:23:19 +0200
commitbb11ecf7abf31648b19f61cc438e72d013c850b7 (patch)
tree8b9de0667a881787d45f685ed0edc773f7db126b /rake_tasks
parent75bc5455af8c3c3381066aac3d5fff42264cac6f (diff)
downloadcoderay-bb11ecf7abf31648b19f61cc438e72d013c850b7.tar.gz
trying to integrate Travis CI
Diffstat (limited to 'rake_tasks')
-rw-r--r--rake_tasks/documentation.rake2
-rw-r--r--rake_tasks/test.rake2
2 files changed, 1 insertions, 3 deletions
diff --git a/rake_tasks/documentation.rake b/rake_tasks/documentation.rake
index f83d5d9..0e3907c 100644
--- a/rake_tasks/documentation.rake
+++ b/rake_tasks/documentation.rake
@@ -6,7 +6,7 @@ begin
require 'rake/rdoctask'
end
rescue LoadError
- puts 'Please gem install rdoc.'
+ warn 'Please gem install rdoc.'
end
desc 'Generate documentation for CodeRay'
diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake
index 7078f84..f070ccc 100644
--- a/rake_tasks/test.rake
+++ b/rake_tasks/test.rake
@@ -7,14 +7,12 @@ namespace :test do
desc 'run functional tests'
task :functional do
- ENV['check_rubygems'] = 'true'
ruby './test/functional/suite.rb'
ruby './test/functional/for_redcloth.rb'
end
desc 'run unit tests'
task :units do
- ENV['check_rubygems'] = 'true'
ruby './test/unit/suite.rb'
end