similar to: Action when database changes

Displaying 20 results from an estimated 2000 matches similar to: "Action when database changes"

2006 Apr 01
3
acts_as_taggable, wrong number of arguments
Hello, When I try: @tagged_items = Problem.find_tagged_with :all => ''kuba'' or @tagged_items = Problem.tags_count :limit => 100 I get this error: ArgumentError in Volume#index wrong number of arguments (2 for 3) RAILS_ROOT: script/../config/.. Application Trace | Framework Trace | Full Trace
2006 Jan 25
24
RailsCron 0.2 plugin
I received feedback from some of you, saying that it would be cool if RailsCron was even easier to manage. So I implemented a graceful start/restart inside of the plugin''s init.rb. If you don''t like it, comment it out and send me the feedback. Also, I finished an update to RailsCron that allows you to attach asynchronous processing methods to your ActiveRecord models. i.e.:
2006 Jan 07
3
RailsCron 0.1 plugin
I, like many of you, have been searching for a good way to handle running long processes in Rails. So I rolled my own solution. I really want feedback! (I''ve tested this on very simple hello world examples, so don''t use it on anything production yet) . Grab the plugin: http://opensvn.csie.org/rails_cron Here''s the README: OVERVIEW ======== RailsCron is a way to
2006 Feb 07
4
RailsCron 0.2.2, please update
I updated RailsCron to fix some threading issues with ActiveRecord. Please update if you were on 0.2.1. Also, I am still working on a good unit test strategy (its tricky because I would think that the tests must occur over a lot of time), but haven''t had/made time to give it its due. If you have suggestions, please let me know. -- Kyle Maxwell Chief Technologist E Factor Media // FN
2006 Feb 23
5
Q: Where to put a periodic updater?
Hello, I need to put a script in place for updating a local database with a remote resource periodically. It should be started alongside the server (or inside it, whatever) and be run as long as the server running my rails app is up an running. Any thoughts on how to accomplish this? I have thought of editing the environment.rb file and placing the call to the script trigger there, but I wonder
2006 Jun 30
2
Development of RailsCron
Hi, Is the development of Rails Cron still active? most of the blog articles about it are unavailable and it hasn''t been updated for a long time. -- Abdur-Rahman Advany http://blog.railsdevelopment.com/
2006 Feb 19
4
Sending Scheduled Email Ticklers
Hi All, I am developing a RoR app for managing community information and would like to have an summary of current events and interests mailed out monthly. The tickler email would be a basic summary of items and links back to the site. I would like to schedule the email delivery dates and have the app send out email to registered users that opted for this service. Once scheduled, a monthly
2006 May 01
2
Google Summer of Code with Xiph.org
All, I'm pleased to announce that Xiph.org has been selected as a mentoring organization for the 2006 Google Summer of Code program. So if you need a summer job, and there's something about free multimedia that's been bugging you, here's your chance! We've put up some project ideas for things we'd like to see in the wiki http://wiki.xiph.org/index.php/Summer_of_Code
2006 May 01
2
Google Summer of Code with Xiph.org
All, I'm pleased to announce that Xiph.org has been selected as a mentoring organization for the 2006 Google Summer of Code program. So if you need a summer job, and there's something about free multimedia that's been bugging you, here's your chance! We've put up some project ideas for things we'd like to see in the wiki http://wiki.xiph.org/index.php/Summer_of_Code
2006 May 01
2
Google Summer of Code with Xiph.org
All, I'm pleased to announce that Xiph.org has been selected as a mentoring organization for the 2006 Google Summer of Code program. So if you need a summer job, and there's something about free multimedia that's been bugging you, here's your chance! We've put up some project ideas for things we'd like to see in the wiki http://wiki.xiph.org/index.php/Summer_of_Code
2006 May 01
2
Google Summer of Code with Xiph.org
All, I'm pleased to announce that Xiph.org has been selected as a mentoring organization for the 2006 Google Summer of Code program. So if you need a summer job, and there's something about free multimedia that's been bugging you, here's your chance! We've put up some project ideas for things we'd like to see in the wiki http://wiki.xiph.org/index.php/Summer_of_Code
2006 May 01
2
Google Summer of Code with Xiph.org
All, I'm pleased to announce that Xiph.org has been selected as a mentoring organization for the 2006 Google Summer of Code program. So if you need a summer job, and there's something about free multimedia that's been bugging you, here's your chance! We've put up some project ideas for things we'd like to see in the wiki http://wiki.xiph.org/index.php/Summer_of_Code
2006 Feb 08
2
How to install RailsCron?
Hi, I would like to start running a background procedure once a user logs in to his account on the website. For this I am considering using the RailsCron object. However, I am not able to download it. I am new to Rails. Can someone give me the excat command I should use to get RailsCron? Can someone suggest a better way of running a procedure in the background? Thanks -Yash -- Posted via
2006 Feb 20
5
RailsCron: error message
Hi, I''m trying to use RailsCron but keeping getting an error when I try to run it. I''m a beginner, so please use small words :) -bash-2.05b$ rake cron_start (in /home/jake/rails_sites/testsite) Syntax error: "&" unexpected The little bit I know about my environment: - RailsCron installed as a plug in (not gem, cause I''m on a shared host) - Debian Linux
2006 Feb 23
12
Showcase On Rails CMS v0.1
I built out a simple CMS for websites that rely heavily on portfolios. This covers graphic and web designers in particular, but also other people with stuff to show off. It''s really easy to customize progressively, so that some people will only modify CSS, but others will dig deeper into Javascript behaviors and the Rails view code. Check it out at http://showcase.kylemaxwell.com/ SVN
2006 Jan 23
3
running a background task/thread in rails?
Hi, I am new to ruby and to rails, but I like what I see so far. I have been working on a web app in java (servlets and JSPs) that, based on a request from the user, kicks off a thread in the background to perform a task (puts messages in an MQSeries queue). The thread object is stored in the session and I then allow the user to control the task from the browser(like stop it). Is the same
2006 Feb 04
5
file_column + form_remote_tag
For my weekend project, I''m going to get form_remote_tag and file_column playing happily together. According to my research, no one has done this yet. If you happen to have tried this, and have some workable code, send me an email. I''d rather not duplicate the effort. Thanks! -- Kyle Maxwell Chief Technologist E Factor Media // FN Interactive kyle@efactormedia.com
2006 Jan 09
5
form with more than 1 file upload field saves 0 byte file for 1 file field
Im using the file_column plugin to upload files from my application. The problem I am encountering is that I have a form with 2 file upload fields and when I submnit that form with files selected, I would get a message from the browser(Firefox) saying that a script on the page is taking a long time to execute and whether I want to cancel it or continue. Whichever option I choose, only 1 file(PDF)
2006 Feb 11
1
Instructions required for RailsCron
Hi, I am writing a client-server rails app. The client and server maintain similar databases. Periodically, I would like them to synchronize their databases. For this, in the application, once the user logs in, I want to spawn a background process at the client that first sends the client''s new data and then receives the server''s new data. I am thinking of using RailsCron for
2006 Feb 23
1
RailsCron: ''every'' in background
Got another question. It''s unclear to me what "every" means in the background function and how it relates to the RailsCron.create "every": >From README: RailsCron.create( :command => "Object.do_something()", :start => 2.minutes.from_now, :every => 12.hours, # default: 1.day :finish =>