I'm assuming 'acts_as_list' is NOT a part of the core Rails (2.0.2); but
a plugin.
What is the standard/typical way to install such plugin?
...or could I just say: $>sudo gem install acts_as_list?
Ric.
I noticed the 'Acts_As_List' is part of Rails 1.26 documentation (re:
http://railsbrain.com) but is *NOT* listed in Rails 2.0.2 documentation.
Is 'acts_as_list' deprecated?
Also, is there a way within Rails to passively check for an existence of
a library object such as 'acts_as_list' without having an exception
blown?
For plugin installation, you can usually do the following from your
application root:
ruby script/plugin install acts_as_list
...and the magic happens. I'm not sure how to get acts_as_list, but
if the above command doesn't do it for you, you might be able to refer
to it with the full path to the web resource (i.e., ruby script/plugin
install http://svn.rubyonrails.org/rails/plugins/acts_as_list/). It's
worth a shot.
As far as deprecation goes, 'acts_as_list' has been removed from the
core in favor of a 'plugin-ized' version. Call it what you will.