diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-10-26 14:11:08 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-10-26 14:11:08 +0000 |
commit | b6c0e80d37bd2e9d5228942d5f5f84f559f864a6 (patch) | |
tree | c01ead84d208051bf7f9bab21e4e94eae5c7f7b0 | |
parent | 569182649137909873ee2be3195bf85f03fef8a0 (diff) | |
download | redmine-b6c0e80d37bd2e9d5228942d5f5f84f559f864a6.tar.gz redmine-b6c0e80d37bd2e9d5228942d5f5f84f559f864a6.zip |
Add ci:about task to display ruby version in build output.
git-svn-id: http://svn.redmine.org/redmine/trunk@13511 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | lib/tasks/ci.rake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake index 857cc232d..52a876b2c 100644 --- a/lib/tasks/ci.rake +++ b/lib/tasks/ci.rake @@ -9,6 +9,11 @@ task :ci do end namespace :ci do + desc "Display info about the build environment" + task :about do + puts "Ruby version: #{RUBY_VERSION}-p#{RUBY_PATCHLEVEL} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]" + end + desc "Setup Redmine for a new build" task :setup do Rake::Task["tmp:clear"].invoke |