acts-as-taggable-on 1.1.9 → 2.0.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +0,0 @@
1
- class ActsAsTaggableOnMigrationGenerator < Rails::Generator::Base
2
- def manifest
3
- record do |m|
4
- m.migration_template 'migration.rb', 'db/migrate', :migration_file_name => "acts_as_taggable_on_migration"
5
- end
6
- end
7
- end
@@ -1,5 +0,0 @@
1
- require 'acts-as-taggable-on'
2
-
3
- ActiveRecord::Base.send :include, ActiveRecord::Acts::TaggableOn
4
- ActiveRecord::Base.send :include, ActiveRecord::Acts::Tagger
5
- ActionView::Base.send :include, TagsHelper if defined?(ActionView::Base)