Fix require problem with the acts_as_taggable patches
This commit is contained in:
parent
ac065e1706
commit
c2893a2e3d
3 changed files with 3 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
||||
# licensed under the Affero General Public License version 3 or later. See
|
||||
# the COPYRIGHT file.
|
||||
require File.join(Rails.root, 'app', 'models', 'acts_as_taggable_on_tag')
|
||||
require File.join(Rails.root, 'app', 'models', 'acts_as_taggable_on', 'tag')
|
||||
require File.join(Rails.root, 'lib', 'stream', 'tag')
|
||||
|
||||
class TagsController < ApplicationController
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
# licensed under the Affero General Public License version 3 or later. See
|
||||
# the COPYRIGHT file.
|
||||
|
||||
require File.join(Rails.root, "app", "models", "acts_as_taggable_on", "tag")
|
||||
|
||||
module Diaspora
|
||||
module Taggable
|
||||
def self.included(model)
|
||||
|
|
|
|||
Loading…
Reference in a new issue