diff options
author | ballman <ballman@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-11 15:07:08 +0000 |
---|---|---|
committer | ballman <ballman@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-11 15:07:08 +0000 |
commit | 24b11b59829fe773ec49db03bbf8b7ddcc0ef182 (patch) | |
tree | 14a0ffd490d306ab42a787a0e6fb79b84ab56bbe /lib/puppet/rails/resource.rb | |
parent | ca2b9e64e76d43380a5e03a87599de1d791a48ce (diff) | |
download | puppet-24b11b59829fe773ec49db03bbf8b7ddcc0ef182.tar.gz puppet-24b11b59829fe773ec49db03bbf8b7ddcc0ef182.tar.xz puppet-24b11b59829fe773ec49db03bbf8b7ddcc0ef182.zip |
Removed acts_as_taggable from the rails stuff. I haven't removed the tables from the schema nor the indexes yet.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2505 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/rails/resource.rb')
-rw-r--r-- | lib/puppet/rails/resource.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/puppet/rails/resource.rb b/lib/puppet/rails/resource.rb index 4f26af6d9..49bd1dacc 100644 --- a/lib/puppet/rails/resource.rb +++ b/lib/puppet/rails/resource.rb @@ -1,5 +1,4 @@ require 'puppet' -require 'puppet/rails/external/tagging/init' require 'puppet/rails/param_name' require 'puppet/util/rails/collection_merger' @@ -11,13 +10,6 @@ class Puppet::Rails::Resource < ActiveRecord::Base belongs_to :source_file belongs_to :host - acts_as_taggable - - def tags=(tags) - #puts "setting tags %s" % tags.inspect - self.tag_with(tags.join(",")) - end - def file if f = self.source_file return f.filename |