search for: clustercub

Displaying 2 results from an estimated 2 matches for "clustercub".

Did you mean: clusterpub
2006 Sep 05
0
can't use rake deploy with Capistrano
...tion ./config/deploy.rb * executing task deploy ** transaction: start * executing task update_code * querying latest revision... * executing "if [[ ! -d /home/explicadores/apps/tutor/releases/ 20060905151635 ]]; then svn co -q -r4 --username **** --password ****** http:// void.clustercube.com/svn/tutor/trunk/ /home/explicadores/apps/tutor/ releases/20060905151635 && (test -e /home/explicadores/apps/tutor/revisions.log || touch /home/ explicadores/apps/tutor/revisions.log && chmod 666 /home/explicadores/ apps/tutor/revisions.log) && echo `date +\"%Y-%...
2006 Jul 14
6
Get a collection through ActiveRecord for using with option_groups_from_collection_for_select
Hello, I am having some difficulties with ActiveRecord. What I want to do is to get a collection of SubjectGroups for using with option_groups_from_collection_for_select My Code: ======================================== class Subject < ActiveRecord::Base has_and_belongs_to_many :users belongs_to :subject_group end class SubjectGroup < ActiveRecord::Base has_many :subjects end