Displaying 4 results from an estimated 4 matches for "foo_nam".
Did you mean:
foo_name
2007 Feb 14
1
Scheduling in backgroundrb not working
...1.1.6
Backgroundrb - 1.2.1
CENT OS ..
(Installed backgroundrb as rails plugin ie. /vendor/plugins/background...)
------------------------------------ backgroundrb.yml-----------------
:host: localhost
:port: 2000
:rails_env: development
my_scheduler:
:class: :mailman_worker
:job_key: :foo_name
:worker_method: :send_emails_to_people
:trigger_args: 0 */1 * * * * *
------------------------------------------my mailman_worker.rb --------
class MailmanWorker < BackgrounDRb::Worker::RailsBase
def do_work(args)
# This method is called in it''s own new thread when y...
2006 Jun 19
10
Lighttpd works fine in development. Production not happening
Hello,
I''ve checked out my rails tree from svn into the location I intend to
run in production mode. However, I am unclear on what exactly needs to
change for it to work in production mode.
Yes I have:
"bin-environment" => ("RAILS_ENV" => "production")
When I switch to the externally routed IP address instead of
0.0.0.0:3000 and try running:
%
2006 Sep 22
1
setMethod
Hello R-help:
I was hoping someone could help me understand a particular function i came
across in a package:
"$.myClass" <- function( x, name ) {
sym = paste( "foo", name, sep = "_" )
if( is.loaded(sym) )
.Call(sym,x)
}
I understand the paste, and .Call part, but I'm not sure how this function
would get called? What exactly is
2006 May 31
7
How do you create a controller & view to create a list of objects?
I''m trying to figure out how to design a view and controller to work with a
simple collection. I have a Foo that has many Bars, so here''s what I did:
$ ruby script/generate model Foo
$ ruby script/generate model Bar
(Uncomment t.column, :name: :string in foo and bar migrations)
(Edit Foo.rb and Bar.rb, add has_many :bars to Foo, belongs_to :foo to Bar)
$ rake db:migrate
$ ruby