search for: sketcher

Displaying 20 results from an estimated 20 matches for "sketcher".

Did you mean: sketched
2006 Mar 09
2
issuing raw SQL in Rails
Hi -- I have a need to run the following SQL in a test: "DELETE FROM agents_bookings" Does anyone know of a way that I can just execute this? It is to clear a many-to-many relationship in the teardown function of a test. Cheers, doug. -- Posted via http://www.ruby-forum.com/.
2006 Apr 03
11
Runaway FCGI Processes with Debian, Apache
Hi all. There is an issue with Rails, FastCGI and Apache2 on Debian that I''ve been dealing with since I started Rails development in late 2005. I''ve developed various workarounds but have not been able to solve the problem at the root. Every so often, for reasons I''ve never been able to determine, a load of dispatch.fcgi processes get spawned and take over my whole
2006 Feb 23
7
Session Based Record Locking - Solutions?
All, I''ve written a simple job/opportunity tracking database app via RoR. I have about 10 internal users. Sometimes 2 people will want to update the same record at more or less the same time and they collide. In particular user 1 may edit a record, then get distracted, and finally an hour later they click save. During that hour user 2 may have pulled up the record, edited it, and
2006 May 15
5
Australian Ruby/Rails Web Host
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: rebecca.vcf Type: text/x-vcard Size: 414 bytes Desc: not available Url : http://wrath.rubyonrails.org/pipermail/rails/attachments/20060515/4cd2f87d/rebecca.vcf
2006 Apr 22
6
Friendly Reminder (OT)
Today, I had a tragic hard drive crash. I hadn''t updated anything to SVN in two weeks. I''m posting this here as a reminder to my beloved Rails community. Everyone, right now..... make a backup of your rails work. Make sure its on two disks. Many of you already do that automatically, but just make sure its working. Two near-release rails plugins were lost in the tragic crash
2006 Apr 11
2
using log4r and rails
hey everyone. i know somebody else had started a thread on this subject, but since no one seems to be answering that thread i thought i would start one of my one. i''m doing a project for a client and we need some seriously verbose logging. it looks like log4r can do what i need, but i can''t for the life of me figure out how to plug it into rails. everywhere talks about how
2006 Apr 19
4
Deployment with Capistrano
Hey all, Has anyone out there got Mongrel deployments working with Capistrano? I''ve had a crack at setting it up, and I''ve found that after a deployment (with updated symlinks) that a mongrel restart does not pick up the new deployed site. It seems to me (in my linkted experience) that the HUP that is sent to mongrel does not re-evaluate the ./current symlink that Cap puts in
2003 Aug 20
0
Re: Re: Your application
...DRAWING FEATURES FILE STORAGE GRAPHICS INSTALLATION INTRALINK JOURNALING OLE PHOTO ALBUM Pro/COLLOBORATE SKETCHER SOLVER TRAIL FILES USER INTERFACE VARIABLES VBA xVIEWER Product: Pro/ENGINEER Module ------------------- 2D_INTERF...
2003 Aug 20
0
Re: Re: That movie
...DRAWING FEATURES FILE STORAGE GRAPHICS INSTALLATION INTRALINK JOURNALING OLE PHOTO ALBUM Pro/COLLOBORATE SKETCHER SOLVER TRAIL FILES USER INTERFACE VARIABLES VBA xVIEWER Product: Pro/ENGINEER Module ------------------- 2D_INTERF...
2003 Aug 20
0
Re: Re: Wicked screensaver
...DRAWING FEATURES FILE STORAGE GRAPHICS INSTALLATION INTRALINK JOURNALING OLE PHOTO ALBUM Pro/COLLOBORATE SKETCHER SOLVER TRAIL FILES USER INTERFACE VARIABLES VBA xVIEWER Product: Pro/ENGINEER Module ------------------- 2D_INTERF...
2006 Apr 30
2
restart with capistrano
Hi all I bumped into the following issue: when trying to restart with capistrano, it does restart, but with the app from the old deployment directory. desc "Restart the app server." task :restart, :roles => :app do run "mongrel_rails restart -c #{current_release}" end Has anybody a better solution for that ? -- Roberto Saccon -------------- next part -------------- An
2006 May 08
4
Rubyy on rails hosting
All, Could any of you recommend an out fit for hosting my rails app that is not expensive with excellent support. Thanks Patrick
2005 Oct 03
2
Explanation of how Scope works?
Hello all, I was wondering if someone could give me a brief explanation of how :scope works. I believe I''ve seen it used with the validation helpers in the past. - Jim
2007 Jan 03
2
error_message_on broken?
Hi, in my app, using the error_message_on form helper like this: <label for="user_name">User name:</label> <%= error_message_on ''user'', :name %> <%= f.text_field :name %> generates the following error: undefined method `errors'' for :user:Symbol I am using edge revision 5813 and the simply_helpful plugin. Is there a way to fix this?
2006 Apr 03
11
Rails VPS Business Hosting
Greetings, Does anyone have experience with Rails VPS hosting? I''m basically looking for a hosting reseller option so I can have control of my clients domains and hosting. I''m looking for something easy to use; although I like learning it all, and am learning a lot, I am most definitely not a command line linux user type as of yet. The one that I''ve looked at
2006 Mar 09
3
problem with find()
I''m trying to update records in a table based on data I get back from a form. In the simplest case, the params structure returned from the form is: {"illness"=>{"1"=>{"illness_date"=>"", "qualifier"=>""}}} The controller code works (i.e., updates the first record) when I do the following: params[:illness].each do
2006 Apr 24
4
mongrel_cluster 0.1: easy mongrel clustering
Hi y''all; A quick note to announce the release of mongrel_cluster, a gem_plugin for Mongrel. This plugin provides commands for managing multiple Mongrel processes behind a reverse-proxy server and load balancer. To install: gem install mongrel_cluster Configure (use -h to options): mongrel_rails cluster::configure Start: mongrel_rails cluster::start I''ve posted a quick
2006 Mar 06
4
Apache 2.x: Use fcgid or Mongrel?
Hi, There''s lots of stuff going on currently with choices of production deployment environments. But I''m not clear on a few things as I need to decide on a production setup where Apache is a given. A recent thread (http://www.ruby-forum.com/topic/56590) seemed to favor Apache 2 with mod_fcgid. And this is supported in articles such as:
2006 Apr 28
5
Migrations - use them or not?
Hello, As a rails newbie, i have stumbled upon some tutorials promoting migratons. I have thought, wow, cool and started using them right away. However, now that i am reading the RoR list on a daily basis, i have seen also mails ranging from ''migrations are not always the best'' to ''migrations are evil'' and even ''i would not use migrations even
2006 Mar 16
5
TimeZone, TZInfo, daylight savings, and composed_of
Does anyone know the best way to track time zone information. There doesn''t seem to be much documentation on this. So far it seems like a simple db field like create table accounts ( id int unsigned not null auto_increment, name varchar(50) not null, time_zone varchar(50) not null, ... primary key (id) ) and a class like class Account < AR ...