diff --git a/Gemfile b/Gemfile index 35ee76e..06b3e3f 100644 --- a/Gemfile +++ b/Gemfile @@ -29,10 +29,6 @@ gem 'jbuilder' # ------------------------------------------------ -# CLONE ACTIVERECORD MODELS AND ASSOCIATIONS -gem 'amoeba' - -# ------------------------------------------------ # SLUGS/PERMALINKS gem 'friendly_id' diff --git a/app/models/question.rb b/app/models/question.rb index 72af4e0..4be224d 100644 --- a/app/models/question.rb +++ b/app/models/question.rb @@ -68,16 +68,6 @@ return question_copy end -# TODO: Commented this amoeba cloning gem definition out to see if its even used. The -# amoeba documentations uses [object].amoeba_dup to clone the object, but that -# command does not exist in the codebase - -# amoeba do -# include_association :options -# include_association :suggested_answers -# clone [:themes] -# end - ## # guidance for org # diff --git a/app/models/section.rb b/app/models/section.rb index 8e04fbb..710e8c7 100644 --- a/app/models/section.rb +++ b/app/models/section.rb @@ -40,11 +40,4 @@ return section_copy end -# TODO: Commented this amoeba cloning gem definition out to see if its even used. The -# amoeba documentations uses [object].amoeba_dup to clone the object, but that -# command does not exist in the codebase -# amoeba do -# include_association :questions -# end - end