kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
5.2 KiB
145 lines
5.2 KiB
require 'fileutils'
|
|
|
|
namespace :redmine do
|
|
namespace :backlogs do
|
|
|
|
desc "Install default label definitions"
|
|
task :default_labels => :environment do
|
|
FileUtils.cp(TaskboardCard::PageLayout::LABELS_FILE_NAME + '.default',
|
|
TaskboardCard::PageLayout::LABELS_FILE_NAME)
|
|
end
|
|
|
|
desc "Install current label definitions git.gnome.org"
|
|
task :current_labels => :environment do
|
|
TaskboardCard::PageLayout.fetch_labels
|
|
end
|
|
|
|
desc "Install and configure Redmine Backlogs"
|
|
task :install => :environment do |t|
|
|
ENV["RAILS_ENV"] ||= "development"
|
|
|
|
['prawn'].each do |gem|
|
|
begin
|
|
require gem
|
|
rescue LoadError
|
|
raise "You are missing the '#{gem}' gem"
|
|
end
|
|
end
|
|
|
|
# Necessary because adding key-value pairs one by one doesn't seem to work
|
|
settings = Setting.plugin_backlogs
|
|
settings[:points_burn_direction] ||= 'down'
|
|
settings[:wiki_template] ||= ''
|
|
|
|
puts
|
|
puts "====================================================="
|
|
puts " Redmine Backlogs Installer"
|
|
puts "====================================================="
|
|
puts "Installing to the #{ENV['RAILS_ENV']} environment."
|
|
|
|
unless ['no', 'false'].include? "#{ENV['labels']}".downcase
|
|
Rake::Task['redmine:backlogs:current_labels'].invoke
|
|
end
|
|
|
|
settings[:card_spec] ||= Cards::TaskboardCards::LABELS.keys[0] unless Cards::TaskboardCards::LABELS.size == 0
|
|
|
|
trackers = Tracker.find(:all)
|
|
|
|
if Story.trackers.length == 0
|
|
puts "Configuring story and task trackers..."
|
|
invalid = true
|
|
while invalid
|
|
puts "-----------------------------------------------------"
|
|
puts "Which trackers do you want to use for your stories?"
|
|
trackers.each_with_index { |t, i| puts " #{ i + 1 }. #{ t.name }" }
|
|
print "Separate values with a space (e.g. 1 3): "
|
|
STDOUT.flush
|
|
selection = (STDIN.gets.chomp!).split(/\D+/)
|
|
|
|
# Check that all values correspond to an items in the list
|
|
invalid = false
|
|
invalid_value = nil
|
|
tracker_names = []
|
|
selection.each do |s|
|
|
if s.to_i > trackers.length
|
|
invalid = true
|
|
invalid_value = s
|
|
break
|
|
else
|
|
tracker_names << trackers[s.to_i-1].name
|
|
end
|
|
end
|
|
|
|
if invalid
|
|
puts "Oooops! You entered an invalid value (#{invalid_value}). Please try again."
|
|
else
|
|
print "You selected the following trackers: #{tracker_names.join(', ')}. Is this correct? (y/n) "
|
|
STDOUT.flush
|
|
invalid = !(STDIN.gets.chomp!).match("y")
|
|
end
|
|
end
|
|
|
|
settings[:story_trackers] = selection.map{ |s| trackers[s.to_i-1].id }
|
|
end
|
|
|
|
|
|
if !Task.tracker
|
|
# Check if there is at least one tracker available
|
|
puts "-----------------------------------------------------"
|
|
if settings[:story_trackers].length < trackers.length
|
|
invalid = true
|
|
while invalid
|
|
# If there's at least one, ask the user to pick one
|
|
puts "Which tracker do you want to use for your tasks?"
|
|
available_trackers = trackers.select{|t| !settings[:story_trackers].include? t.id}
|
|
j = 0
|
|
available_trackers.each_with_index { |t, i| puts " #{ j = i + 1 }. #{ t.name }" }
|
|
|
|
print "Choose one from above: "
|
|
STDOUT.flush
|
|
selection = (STDIN.gets.chomp!).split(/\D+/)
|
|
|
|
if selection.length > 0 and selection.first.to_i <= available_trackers.length
|
|
# If the user picked one, use that
|
|
print "You selected #{available_trackers[selection.first.to_i-1].name}. Is this correct? (y/n) "
|
|
STDOUT.flush
|
|
if (STDIN.gets.chomp!).match("y")
|
|
settings[:task_tracker] = available_trackers[selection.first.to_i-1].id
|
|
invalid = false
|
|
end
|
|
else
|
|
puts "Oooops! That's not a valid selection. Please try again."
|
|
end
|
|
end
|
|
else
|
|
# If there's none, ask to create one
|
|
puts "You don't have any trackers available for use with tasks."
|
|
puts "Please create a new tracker via the Redmine admin interface,"
|
|
puts "then re-run this installer. Press any key to continue."
|
|
STDOUT.flush
|
|
STDIN.gets
|
|
end
|
|
end
|
|
|
|
# Necessary because adding key-value pairs one by one doesn't seem to work
|
|
Setting.plugin_backlogs = settings
|
|
|
|
puts "Story and task trackers are now set."
|
|
|
|
puts "Migrating the database..."
|
|
STDOUT.flush
|
|
system('rake db:migrate_plugins --trace > backlogs_install.log')
|
|
if $?==0
|
|
puts "done!"
|
|
puts "Installation complete. Please restart Redmine."
|
|
puts "Thank you for trying out Redmine Backlogs!"
|
|
else
|
|
puts "ERROR!"
|
|
puts "*******************************************************"
|
|
puts " Whoa! An error occurred during database migration."
|
|
puts " Please see backlogs_install.log for more info."
|
|
puts "*******************************************************"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|