acts_as_taggable_on_steroids
acts_as_taggable_on_steroids copied to clipboard
Tagging for Ruby on Rails
acts_as_taggable_migration generator now works with rails-3.0.x
Having a really long tag name can cause an error if the truncated tag already exists because it attempts to recreate the tag and a validation error occurs. I've included...
Did this to avoid dependency issues when switching between rails 2.3.x and 3.0.0 for testing - run "bundle install" to initialize your .bundle directory - run tests: "DB='sqlite3' bundle exec...
Hi, in my project I use this plugin but rails gives this warning everytime I run the server: DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these...
Using Rails 3.2 It seems in the Tag model that :name is not accessible, tried to override creating a file Tag.rb: class Tag < ActiveRecord::Base attr_accessible :name end but it...
I need to implement a kill words feature so "kill words" wouldn't get tagged. Is this something you're interested in me contributing back?
Calling #tag_counts causes the creation of invalid SQL when using this with Rails 3. It turns out that the #scope method on ActiveRecord::Base no longer does the same thing as...
ruby: 1.8.7 REE rails: 3.0.0.rc steps to reproduce: rails plugin install git://github.com/jviney/acts_as_taggable_on_steroids.git rails generate acts_as_taggable_migration
Using tags in my URLs and want to have slugs for them, how do I do that without editing the model code in the plugin?
DEPRECATION WARNING: Base#after_destroy has been deprecated, please use Base.after_destroy :method instead. (called from at /home/user/rails_app/vendor/plugins/acts_as_taggable_on_steroids/lib/tagging.rb:5) I'm not sure the right change for this. I'm giving this a try for now,...