similar to: different separator for acts_as_taggable?

Displaying 20 results from an estimated 20000 matches similar to: "different separator for acts_as_taggable?"

2006 Jun 16
4
duplicate entry issue in acts_as_taggable gem
Hi, I am using the ''acts_as_taggable'' gem and have issues when I try to ''tag'' an entity with a ''tagname'' already defined. i.e 1) book[1].tag(''science'',''paperback'') --> works fine 2) book[2].tag(''roman'',''physics'',''paperback'') --> creates an
2006 Jun 21
4
Simplest way to demonstrate a RoR app
Hi, I have built a simple RoR application and would like to show it to some friends. I would like to assign a dyndns URI like "myapp.dyndns.org" address to point to the application. As the WEBrick/Mongrel servers are running in "localhost (so loopback connections)" and I couldn''t bind them to the external server name or couldn''t bind them to my IP
2006 Jun 05
6
HTML Parsing libraries
Hi, What is the best way to parse HTML? Or is there a simple way to convert a table to an array? I tried beautiful_soup and the built-in htmltools, but have trouble getting them to run. Any pointers? Thanks, Hari -- Posted via http://www.ruby-forum.com/.
2006 Jun 06
6
Linking two tables using a lookup table
Hi, How do I associate two different tables which have a lookup id (table) as common. I tried the has_many :table2, :through => look_up_table in my table1 model. Any hints? Thanks, Hari -- Posted via http://www.ruby-forum.com/.
2006 Apr 20
5
acts_as_taggable patch 3866 needs some testing
DHH''s acts_as_taggable is now much more usable with this patch. http://dev.rubyonrails.org/ticket/3866 This patch adds scoped finders, documentation, and tests: # Get tags for all articles in a blog @blog.articles.tags # Get tags for articles in a blog published in the last year @blog.articles.tags :conditions => [''published_at > ?'', 1.year.ago] # Get related
2006 Jan 29
1
Why am I getting "undefined local variable or method `acts_as_taggable''"?
Hello, I recently installed acts_as_taggable using the following command: gem install acts_as_taggable # output follows Attempting local installation of ''acts_as_taggable'' Local gem file not found: acts_as_taggable*.gem Attempting remote installation of ''acts_as_taggable'' Updating Gem source index for: http://gems.rubyforge.org Successfully installed
2006 Apr 03
5
Newbie question about acts_as_taggable
I installed the acts_as_taggable plugin that DHH wrote. Now I have met problems on using it: class Book < ActiveRecord::Base acts_as_taggable end mybook = Book.new mybook.tag_with(''red library book'') But the system tell the wrong message: undefined method `parse'' for Tag:Class d:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/base.rb:1123:in
2006 Apr 03
0
Re: acts_as_taggable can not be used under 1.1
acts_as_taggable is working fine for me on 1.1. i''m getting acts_as_taggable from svn (http://dev.rubyonrails.com/svn/rails/plugins/acts_as_taggable/), installing it into /vendor/plugins/acts_as_taggable > If the acts_as_taggable plugin has been installed via ruby script/plugin > install acts_as_taggable while not acts_astaggable gem installed via gem > install
2007 Jan 19
0
Acts_as_taggable (the gem) woes (solved)
Hi, I had to battle quite a bit to find how to load acts_as_taggable without using require_gem. where I previously had require_gem ''acts_as_taggable'' I tried replacing by the obvious gem ''acts_as_taggable'' require ''acts_as_taggable'' this failed miserably. The trick is that the acts_as_taggable module is in a file named taggable in the lib
2006 Jul 03
2
redirect as post?
Hi, How can I make sure the redirect should act as a "POST" method and not as "GET"? Thanks, Hari -- View this message in context: http://www.nabble.com/redirect-as-post--tf1884434.html#a5151391 Sent from the RubyOnRails Users forum at Nabble.com.
2006 Apr 03
2
It seems that acts_as_taggable can not be used under 1.1?
If the acts_as_taggable plugin has been installed via ruby script/plugin install acts_as_taggable while not acts_astaggable gem installed via gem install acts_as_taggable,it seems that the plugin can not work at all under the rails 1.1 enviroment.According to http://wiki.rubyonrails.org/rails/pages/ActsAsTaggablePluginHowto the plugin should work under edge rails,but when the document
2006 Aug 29
1
acts_as_taggable question
Hi folks, I was using the acts_as_taggable gem in my application. However recently I accidentally ran gem install acts_as_taggable and now my application is giving errors complaining about missing tables resources_tags Before running the gem install command, I had tables named as tags_resources. Why am I now getting these errors? Has there been a change in acts_as_taggable gem? Why would it
2006 Jan 30
1
acts_as_taggable => error: undefined method ''tag''
I get an "undefined method ''tag''" when I try to use the acts_as_taggable. Note that it''s not the issue of bouncing webrick after changing the environment.rb file. (I stumbled on that too... :-( ). I read all the doc I could find (on this site, on http://rails.techno-weenie.net and at http://taggable.rubyforge.org/) but I couldn''t find anything I
2006 Feb 28
0
acts_as_taggable and mechanize
Hi, I''m trying to use both acts_as_taggable and mechanize (WWW::Mechanize) gems in my app. The problem is that when I do require ''mechanize'' in the app, acts_as_taggable throws the following error. undefined method `table_name'' for Struct::Tag:Class coming from .../gems/acts_as_taggable-1.0.4/lib/taggable.rb:150 However it works fine if I don''t
2006 Nov 21
0
Observer + acts_as_taggable plugin = dead app
so i have found that if i try to place an observer on a model that is using the acts_as_taggable plugin, my app will not start up. this is what i get in the mongrel startup log /Applications/Locomotive2/Bundles/rmagickRailsSept2006_ppc.locobundle/framework/lib/ruby/gems/1.8/gems/activerecord-1.14.4/lib/active_record/base.rb:1129:in `method_missing'': undefined local variable or method
2006 Nov 11
0
acts_as_taggable plugin - paging through tagged model
Hi, I''m using the acts_as_taggable plugin & wanted to page through all a model''s records taggged with a particular tags. i.e. page through all Model records that have been tagged with "artist" I could not work out how to do this with the plugin, so I made the changes outlined below. Did I need to do this..? & does anyone else find this useful?
2006 Feb 16
1
[PATCH] acts_as_taggable plugin
hi, I started today to use the acts as taggable plugin and it''s working as expected. I added a method find_tagged_with_all since I needed to find the elements tagged with all the items in a list while find_tagged_with finds all the elements tagged with any of the list terms. Attached to this mail there''s a patch which adds the find_tagged_with_all method and which solves a
2006 Jan 20
6
HELP: acts_as_taggable problem with :clear => true
I''ve got the basics of acts_as_taggable going, but I now want to use :clear => true on the tags method, because the tags I''m supplying as parameters are the complete set of tags for the item, not additions to existing tags. Problem is, that gives me a nasty SQL error ... Unknown column ''id'' in ''where clause'': UPDATE items_tags SET
2006 Jun 30
0
find_by_sql not quoting properly (in acts_as_taggable plugin)
I have run into a very strange problem discovered through the use of the acts_as_taggable plugin, but related to quoting/sanitizing the interpolated list in a find_by_sql. Apologies for the length, but I wanted to be complete. ;-) The method from acts_as_taggable.rb is: def find_tagged_with(list) find_by_sql(["SELECT #{table_name}.* FROM #{table_name}, tags,
2006 Feb 17
2
acts_as_versioned and acts_as_taggable on same model?
I am trying to use acts_as_versioned and acts_as_taggable (plugin) on the exact same model. Has anyone successfuly done this? I think what I need to do is make model_versions acts_as_taggable instead of my main model. Anyone have any other suggestions or any suggestions how to do this? Your Friend, John Kopanas http://www.kopanas.com