Displaying 6 results from an estimated 6 matches for "howtosplugin".
Did you mean:
howtosplugins
2006 Jul 06
3
How To write an acts_as* plugin
Hi,
I need to understand how to write an acts_as_XXX (similar to acts_as_tree)
plugin
Any good resource to get me started?
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060706/a974ff06/attachment.html
2006 Mar 22
10
Need for multiple acts_as_list
I have a model "Childmodel" that belongs_to two other models "Parent1"
and "Parent2". "Parent1" "has_many :childmodels, :order => :positionp1"
and "Parent2" "has_many :childmodels, :order => :positionp2". i.e. The
child is independently positioned within each of its parents.
This works fine and gets me the useful
2006 Jan 09
11
Scaleability and Sharing of code between apps
Application 1 is an auditing application called AuditSystem.
Application 2 is a quality control appllication called QC.
App1 has a couple of classes, including models, that i would like to use
with App2. I would like a change in a class to be felt in both
applications. How do i acheive this without copying and pasting code??
At the moment im feeling i should have made the whole thing one
2006 Jul 28
12
MenuEngine
Hi all,
MenuEngine is a small Rails engine that can generate templated
drop-down DHTML menus commonly used for web site navigation. Supports
creation of menus from a YAML file, from code and from pre-configured
HTML. Optionally integrates with UserEngine for authorization.
http://www.muermann.org/ruby/menu_engine
Project page:
http://rubyforge.org/projects/menuengine
This is my first attempt
2005 Dec 02
43
ANN: acts_as_ferret
...-November/000014.html
Howtos on creating plugins:
# http://wiki.rubyonrails.com/rails/pages/HowToWriteAnActsAsFoxPlugin
# http://www.jamis.jamisbuck.org/articles/2005/10/11/plugging-into-rails
# http://lesscode.org/2005/10/27/rails-simplest-plugin-manager/
# http://wiki.rubyonrails.com/rails/pages/HowTosPlugins
The result is the acts_as_ferret Mixin for ActivcRecord.
Use it as follows:
In any model.rb add acts_as_ferret
class Foo < ActiveRecord::Base
acts_as_ferret
end
All CRUD operations will be performed on both ActiveRecord (as usual) and a
ferret index for further searching.
The following...
2005 Dec 02
43
ANN: acts_as_ferret
...-November/000014.html
Howtos on creating plugins:
# http://wiki.rubyonrails.com/rails/pages/HowToWriteAnActsAsFoxPlugin
# http://www.jamis.jamisbuck.org/articles/2005/10/11/plugging-into-rails
# http://lesscode.org/2005/10/27/rails-simplest-plugin-manager/
# http://wiki.rubyonrails.com/rails/pages/HowTosPlugins
The result is the acts_as_ferret Mixin for ActivcRecord.
Use it as follows:
In any model.rb add acts_as_ferret
class Foo < ActiveRecord::Base
acts_as_ferret
end
All CRUD operations will be performed on both ActiveRecord (as usual) and a
ferret index for further searching.
The following...