Displaying 20 results from an estimated 400 matches similar to: "faceboooker_mq"
2008 Mar 14
14
Facebooker MQ now on RubyForge
I don''t know if anyone is using this but I just fixed a bunch of bugs, some
big ones, and moved this project to RubyForge SVN servers.
So you can get it here now:
script/plugin install
http://facebooker-mq.rubyforge.org/svn/trunk/facebooker-mq/
This is working great for me on a couple of projects.
Here is the README
Updated: 3/14/2008
Purpose:
The purpose of FacebookerMQ is to
2008 Apr 10
1
error_messages_for
I''ve been all good and written some great validation in my models, but
when something doesn''t validate, I''m used to using error_messages_for
in my view to display the errors.
Is there some sort of facebook_messages_for equivalent in facebooker?
Or perhaps some parameter I can pass to facebook_messages?
Justin
2008 Mar 16
0
ar_mailer problem
Hi, I am having the following problem with ar_mailer.
FOr the time being i have manualyy created a record for the email to be
sent, in the database in a table named ''emails''.
Now if I run ar_sendmail i get the follwing error.
C:\Inetpub\event>ar_sendmail
Unhandled exception uninitialized constant
ActionMailer::ARMailer(NameError):
2006 Aug 15
0
ar_mailer
Rubyforge Project:
http://rubyforge.org/projects/rctools
Documentation:
http://dev.robotcoop.com/Tools/ar_mailer
== About
Even deliviring email to the local machine may take too long when you
have to
send hundreds of messages. ar_mailer allows you to store messages
into the
database for later delivery by a separate process, ar_sendmail.
== Installing ar_mailer
Just install the gem:
2008 Oct 22
1
Sending thousands of email with ar_mailer
Hi,
to send an email with ar_mailer I need to generate it and save it to
the db, right?
Currently the code looks very simple:
Newsletter.recepients.each do |recepient|
NewsletterMailer.deliver_dedicated(request, recepient, newsletter)
end
But for i.e. 30000 receivers it''s going to take a long while anyway.
Should I create them somehow in the background using BackgrounDRb or
something
2010 Mar 27
1
ar_mailer, class Email : add field to the table?
Hi,
I use ar_mailer to send emails from my application.
I want to build a page where the admin case see the queue of mails and
the possibility of remove some mail in the queue if he wants.
The email in the queue are save in the AR model Email.
I have an AR model Sent where i save the email that the user sent.
I would like to add to the model Email a column to save the id of the
corresponding
2006 Jun 07
1
How to freeze_edge with TortoiseSVN and InstantRails
I installed TortoiseSVN, created a local repository at
c:/instantrails/SVNRepository.
I have an app that I want to put into SVN and also do a freeze_edge for,
but I''m not sure how.
I ran command ''rake freeze_edge'' and got the error:
ERROR: Must have subversion (svn) available in the PATH to lock this
application to Edge Rails
rake aborted!
Any advice or links to a
2006 Jul 12
4
error when using plugin discover
When I run ./script/plugin discover to register new plugin sites I get
stopped at this point with the following error.
...
http://svn.northpub.com/plugins/
http://rhnh.svnrepository.com/svn/public/rails/plugins/
(eval):3:in `each'': undefined method `[]'' for nil:NilClass (NoMethodError)
from /usr/lib/ruby/gems/1.8/gems/rails-1.1.2/lib/commands/plugin.rb:658:in
2010 May 19
0
Help Preparing Data for Heatmap creation
All -
Below are samples of the data, a description of my approach and the
work I've done so far. My goal is two-fold, first learn more about R
and the creation of heatmaps; second, to create a heat map where the
vertical access is a series of days and the horizontal is the hour of
a day with the color of the cells being determined by the number of
texts in that hour. While the project
2008 Jan 31
3
presenting validation errors via fbml?
Hi Facebookers,
Is there a helper or suggested approach for presenting validation
errors on an fbml form?
Something to translate rails error markup to fbml:error markup?
thanks
Joel
2009 Aug 07
1
Email templates not updating
I have a strange problem: I am using ActionMailer via ar_mailer to mail
out some multi-part email with templates and it''s working just fine.
But, if I make a change to the templates, new email generated uses the
old template. I''ve looked at all the moving parts and they seem to be in
order—even tried restarting the httpd process thinking passenger wasn''t
listening to the
2008 Jan 10
3
A best practices question
Hey everyone. I''ve got a best practices question. How are you guys
rendering newsfeeds? We have a couple of apps where we send newsfeed
items from a backend process. As such, we aren''t in the context of a
controller and can''t use the rails template rendering. We''ve tried
about 3 different ways to make that bearable, but aren''t having much
2008 Sep 09
6
Prioritizing Mailer Queue / Action Mailer
Hi,
I have different kinds of mails going out. For eg:
1. signup
2. notification mails
etc
I am using mailer queue to avoid mongrels waiting on email to be sent.
However, it makes sense to have signup mails go instantaneously whereas
other mails can go to mailer queue.
Has anyone done such thing? Any suggestions please?
Regards,
SG
--
Posted via http://www.ruby-forum.com/.
2009 Mar 06
3
Gem update problem
Hi, firs at all sorry if my english is not the best.
I''m working with OSX and i have a problem trying to launc localhost.
In mongrel.log i can see this message:
Agent Log is found in /Users/jose/rankia/log/newrelic_agent.3000.log
/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in
`gem_original_require'': no such file to load -- action_mailer/ar_mailer
(MissingSourceFile)
2008 Apr 08
3
Session Expired for Profile Publishing
Ok. I''m not having any success with publishing profile FBML.
Example code:
class WelcomeController < ApplicationController
layout "facebook"
ensure_application_is_installed_by_facebook_user
def index
@user = facebook_session.user
...
@user.profile_fbml = render_to_string( :template => ''welcome/profile'' )
end
end
Results in
2008 Jan 26
3
Facebooker::Session::IncorrectSignature
I think I must be missing something obvious on this one, but I can''t get past the initial "ensure_application_is_installed_by_facebook_user" in a rails app that I''m trying to put together. I''m running on edge rails with the latest Facebooker as a plugin. I''ve tried adding my settings to the environment configs and recently I tried the new yaml
2008 Mar 11
0
How to get a facebook session for desktop applications (or unit tests?)
Normally, in a rails app, all one would have to do is call
set_facebook_session, or the ensure_* filters to get a valid session.
I''ve been looking through the sessions code to figure out how to get a
valid session for desktop applications (or unit tests)--basically
outside of rails controller.
As far as I can ascertain, you should just be able to do this:
require
2008 Oct 17
4
Error when posting facebook.feed.publishActionOfUser
posting ''facebook.feed.publishActionOfUser'' with {:title=>"<fb:fbml>
<fb:name ifcantsee=\"A Hidden User\" linked=\"true\" uid=\"579947937\"
/> wrote a <a href=\"http://apps.facebook.com/dailycaption/captions/1273\">caption</a></fb:fbml>",
2008 Jan 23
0
bug in external apps
I was connecting directly to my server to try to debug something. I disabled the ensure_application_is_installed_by_facebook_user check, then tried to connect to my index action. Got this error:
SystemStackError in FacebookController#index
stack level too deep
RAILS_ROOT: script/../config/..
Application Trace | Framework Trace | Full Trace
2008 Jul 11
0
canvas url rewriting fails for templates loaded through ajax
I just encountered a bug that caused the links in my partials to be
generated as non-canvas routes when the partial was loaded via ajax.
This bug is due to facebooker url rewriting checking for fb_sig_in_canvas to
determine if the application is running in or outside a canvas, and
fb_sig_in_canvas is not sent for ajax requests.
My hacked together patch diff is below, sorry I didn''t have