git-svn-id: https://192.168.0.254/svn/Rodax.redmine_rodax_crm/trunk@2 ff88604e-da85-c949-a72f-fc3aa3ba3724
53 lines
1.8 KiB
Ruby
53 lines
1.8 KiB
Ruby
require 'dispatcher'
|
|
|
|
require_library_or_gem "acts-as-taggable-on"
|
|
|
|
begin
|
|
require_library_or_gem 'RMagick' unless Object.const_defined?(:Magick)
|
|
rescue LoadError
|
|
# RMagick is not available
|
|
end
|
|
|
|
require 'redmine_contacts/patches/compatibility_patch'
|
|
|
|
require 'redmine_contacts/patches/issue_patch'
|
|
require 'redmine_contacts/patches/project_patch'
|
|
require 'redmine_contacts/patches/tag_patch'
|
|
require 'redmine_contacts/patches/mailer_patch'
|
|
require 'redmine_contacts/patches/attachments_controller_patch'
|
|
require 'redmine_contacts/patches/auto_completes_controller_patch'
|
|
require 'redmine_contacts/patches/users_controller_patch'
|
|
require 'redmine_contacts/patches/my_controller_patch'
|
|
require 'redmine_contacts/patches/custom_fields_helper_patch'
|
|
|
|
require 'redmine_contacts/wiki_macros/contacts_wiki_macros'
|
|
|
|
# Dir['redmine_contacts/hooks/*.rb'].each {|file| require File.basename(file) }
|
|
|
|
require 'redmine_contacts/hooks/views_projects_hook'
|
|
require 'redmine_contacts/hooks/views_issues_hook'
|
|
require 'redmine_contacts/hooks/views_users_hook'
|
|
require 'redmine_contacts/hooks/views_layouts_hook'
|
|
require 'redmine_contacts/hooks/views_custom_fields_hook'
|
|
|
|
require 'acts_as_viewable/init'
|
|
|
|
module RedmineContacts
|
|
|
|
# class C08de5896ae031369f5a0f9de2d714bb5
|
|
# def self.name() "redmine_contacts" end
|
|
# end
|
|
#
|
|
# if ActiveRecord::Migration.connection.table_exists?(:schema_migrations) && Engines::Plugin::Migrator.current_version(C08de5896ae031369f5a0f9de2d714bb5) < 20
|
|
# raise "===========================================================\n" +
|
|
# "YOU SHOULD USE VERSION < 2.1 PRO OR LIGHT FOR UPDATE PLUGIN\n" +
|
|
# "==========================================================="
|
|
# end
|
|
|
|
def self.settings() Setting[:plugin_contacts] end
|
|
|
|
end
|
|
|
|
|
|
|