##// END OF EJS Templates
Gantt chart can now be exported to a graphic file (png)....
Gantt chart can now be exported to a graphic file (png). This functionality is only available if RMagick is present. git-svn-id: http://redmine.rubyforge.org/svn/trunk@666 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r660:edba1f692b5a
r660:edba1f692b5a
Show More
redmine.rb
11 lines | 287 B | text/x-ruby | RubyLexer
require 'redmine/version'
require 'redmine/mime_type'
require 'redmine/acts_as_watchable/init'
begin
require_library_or_gem 'rmagick' unless Object.const_defined?(:Magick)
rescue LoadError
# RMagick is not available
end
REDMINE_SUPPORTED_SCM = %w( Subversion Darcs Mercurial Cvs )