similar to: how to impliment tagging with steroids?

Displaying 20 results from an estimated 40000 matches similar to: "how to impliment tagging with steroids?"

2008 Dec 11
1
help needed regaring Acts As Taggable On Steroids
Hello, In my rails application, I have a book model. I want to add tags. For that I have installed acts_as_taggable_on_steroids from this link http://agilewebdevelopment.com/plugins/acts_as_taggable_on_steroids and do as the readme file. This is my Model : class Book < ActiveRecord::Base acts_as_taggable end Here is my ApplicationHelper : module
2009 Sep 09
4
Tagging recommendation - acts_as_taggable_on_steroids best?
hey all What''s the most popular tagging plugin/gem these days? Is it acts_as_taggable_on_steroids? Or is something else better? I''d like to basically replicate flickr''s tagging as much as possible, eg allowing multi-word tags to be denoted by quotes or seperated by commas. thanks max -- Posted via http://www.ruby-forum.com/.
2008 Feb 26
1
problem with posting with acts as taggable on steroids
hi all i''m trying to have a post with tags included but i''m getting undefined method `tag_with'' i''ve already added acts_as_taggable to the model and on the controller the code for creating the post is: def create @post = Post.new(params[:post]) @post.tag_with(params[:tag_list]) @post.user = current_user if @post.save redirect_to
2007 Jan 22
1
acts_as_taggable uses mysql innoDB tables - does innoDB flush on write on Mac OS X?
I''m using the acts_as_taggable plug-in (actually, the one on steroids - http://www.agilewebdevelopment.com/plugins/acts_as_taggable_on_steroids). It seems to work OK in the tests I''ve written, but when I query the DB to see how the tags are stored, I see that the tables tags & taggable are empty. Yet, the query from w/in the tests seem to return correct results. Is there a
2007 May 17
0
Trying to impliment the Rails Flickr screen cast
I am trying to experiment with Flickr so I am following the screen cast on the Rails web site. I have installed the flickr gem and got an API key from flickr. I am having an issue when I try to run the example though as I am told that my API key has expired. As I only got it about 20 minutes before writing this I find that hard to take. Here is a copy of the error message. Showing
2007 Aug 14
0
Noobkit - Rails doc on steroids
Hey everyone! Here''s my elevator pitch: Noobkit (http://www.noobkit.com) is basically RDoc on steroids currently covering 26 Gems, including Rails and Ruby Core. It''s got full index search, browser search extensions for FF, IE and Safari and also bookmarks and comments with OpenID. Very lightweight, fast, 100% CSS, easy on the eye. Thanks. -- Alex
2005 Sep 03
13
acts_as_taggable v2 - Tagging on Steroids
Hi folks, Thanks to the community feedback on the 1st version, I''ve come up with a much improved version of the acts_as_taggable mixin. ThereĀ“s some piece of the action here: http://dema.ruby.com.br/articles/2005/09/03/tagging-on-steroids-with-rails Cheers Dema -- http://dema.ruby.com.br - Rails from a .NET perspective
2008 Jan 20
2
Which taggable library do people use?
I''d like to add taggability to a model in the site I''m working on, and I wanted to get an idea of what people are using. I keep seeing that acts_as_taggable is deprecated, so I tried the acts_as_taggable_on_steroids. I also tried be_taggable. In any case, I figured I''d see what people use. thanks. -corey -- http://www.coreyhaines.com The Internet''s Premiere
2008 Dec 22
2
how to use the observe_field to get more than one field?
Hi, I have two selctdropdown boxes name like "resolution" and "codecname". Now i am able to get the single field value either from resolution or codecformat select box. ex: observe_field ''resolution'' or observe_field ''codecforamt'' is there any way to get the two fields in to the observe_field method ? Can anyone give me suggestionfs or
2008 Apr 16
8
Will acts_as_taggable_on_steroids and better_nested_set work together?
I am having this crazy problem where it ONLY shows up in testing. This is my test code <code> def test_should_destroy task1 = Task.new(:description => "tmp", :done => false, :user => User.find_by_login(''admin'')) assert task1.save assert task1.destroy end </code> This is my task model
2006 Feb 26
2
auto_complete on steroids
I am trying to get more out of auto_complete than it apparently was designed to deliver. My problems seem to be two fold. 1 - I use aggregations on names... :first_name, :middle_initial, :last_name and then aggregate them using a composed_of :wholename thing auto_complete_for seems to be wired to only use table columns directly and gags on the aggregate form. 2 - foreign table columns -
2002 Dec 12
0
Shorewall on Steroids
Today, the Mandrake Store here in the US have made available for sale their "Multi Network Firewall" (MNF). MNF is built around Shorewall and has a lot of nice features including a cool GUI. MNF has been under development for almost a year and is Mandrake''s next-generation firewall product. For those of you who are using Shorewall in a commercial environment and who are
2005 Mar 03
4
Steroids for Rsync!
I've been researching the state of 'file alteration monitoring' technology on Linux. Famd uses dnotify to inefficently monitor a handful of directories. The replacement for dnotify is being worked on in the kenel and it's called inotify. If I understand it correctly and they get it finished, it would be an awesome addition to rsync. With it, you could run rsync to update a
2009 Jan 08
1
Which "acts_as_taggable" plugin is the best?
Hi all, I want to implement tagging for my resources, but I found lots "acts_as_taggable" available: "acts_as_tabble", "acts_as_taggable_on", "acts_as_taggable_on_steroid", etc. Some of them are not in active development, and I do not know which one is more popular. So, any suggestions? Thanks in advance! Difei. -- Posted via http://www.ruby-forum.com/.
2009 Oct 21
0
acts_as_taggable_on_steroids
hi, i''m playing with acts_as_taggable_on_steroids plugin and i find it very nice but i got stuck on find_tagged_with ordering options. suppose i got a model "book" that acts_as_taggable. when i search for Book.find_tagged_with(["a","b","c"]) i got the books that have any of these tags. Is there a way to order them, giving me the list in descending
2006 Sep 12
1
acts_as_taggable -- which one?
There appear to be three acts_as_taggable implementations and I''m looking for a recommendation on which to use. - Gem - DHH plugin - Dema mixin The Gem implementation appears to be obsolescent, from what I can read on the lists and Google search. I like that the DHH plugin uses polymorphic associations because there will be lots of different taggable items in my application; however,
2008 Dec 04
0
need sample application developed using acts_as_taggable_on_steroids
hi all, i am working stream database creation using rails2.0.So i need some sample project for understanding how to proceed fos tags and all.can any one share the sample application. thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2009 Sep 11
0
Need help with extending a plugin
hey folks I''ve installed the plugin acts_as_taggable_on_steroids (henceforth aatos), and i already have some tagging functionality set up, using the same approach (ie a Tag and a Tagging class with associated tables) as aatos. So, i want my existing Tag and Taggings methods, plus some other methods i have in a module which i include with the taggable classes (ie the ones that would call
2005 Dec 15
2
Rails Tagging Generator?
Hey all! Just finished my first Rails app on 1.0 day and even got paid for it! Great stuff and much thanks to the many generous souls in IRC, especially ezmobious, who helped me through. For my second Rails app, I want to use tagging. I am wondering if there is a Tagging Generator or some other existing implementation I can borrow from? Best, Mike Pence Boca Raton, FL
2007 May 10
3
MVC Overriding
Trying to convert a large application from our home brew PHP framework to Ruby on Rails. I''ve built small things, like blogs and other CMS''s with Rails, but am having a hard time thinking of a better way to impliment some of our specific needs. The big issues if our file overriding. We have a base application that we start with and then do custom work per client on top of