gem 'foundation_theme', git: "git@github.com:dotgee/redmine-foundation-theme.git"Add the following lines to config/application.rb in your redmine
config.paths['app/views'].unshift(FoundationTheme::Engine.root.join('app', 'views'))
config.paths['app/helpers'].unshift(FoundationTheme::Engine.root.join('app', 'helpers').to_s)
config.paths['lib'].unshift(FoundationTheme::Engine.root.join('lib'))
config.assets.enabled = true
config.assets.paths << "#{Rails.root}/public/stylesheets/"
config.assets.paths << "#{Rails.root}/public/javascripts/"
config.assets.paths << "#{Rails.root}/public/images/"Replace in function stylesheet_link_tag and javascript_include_tag from application_helper.rb
super sources, options
with
super *sources, optionsMIT