Re: [Rails] Ruby on Rails Developer

2010-11-22 Thread rajeevsharma86
yours email please :) On Mon, Nov 22, 2010 at 9:47 PM, Ar Love wrote: > Hello, > > I'm hoping you might be interested in the below position, or be able to > make a suggestion as to which other sites I can post this job: > > Web developer required > > Fast growing start up with seed funding behin

Re: [Rails] Rails requires RubyGems >= 1.3.2. Please install RubyGems and try again

2010-11-22 Thread rajeevsharma86
Down load gem by your self and install http://rubygems.org/ and if possible use ruby lateset stable version On Mon, Nov 22, 2010 at 9:59 PM, Franck wrote: > Hello, > > I've been trying to deploy a Ruby on Rails application and everything > works fine until it tries to run the DB migration scrip

[Rails] any gems to process PowerPoint files?

2010-11-22 Thread Andy
Does anyone know of any gems or plugins that can take a PowerPoint and create images out of every slide and also access the text in each slide? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrai

Re: [Rails] How do I internationalize/localize my rails plugin?

2010-11-22 Thread Walter McGinnis
Hi, Here's some example code from a Rails engine: https://github.com/kete/external_search_sources/blob/master/init.rb You'll note that it follows the Rails convention of having a config and config/locales directory. Hope that helps, Walter -- You received this message because you are subscrib

Re: [Rails] Link_to not doing the expected.

2010-11-22 Thread Rob Biedenharn
On Nov 22, 2010, at 7:36 PM, MDM wrote: Can anyone explain why a Link_to inside a table should print out the link if the field is null, but print out the field if it contain data(text) in both rails 3 and 2.3.5. If the field is nul it prints out:- "/dsplaces/100? country=UK&area=London" If

Re: [Rails] Who wants to make a difference for America? :)

2010-11-22 Thread Brian Troutwine
On Mon, Nov 22, 2010 at 1:30 PM, Khalid Shaikh wrote: > Check it out, join the group. > > http://groups.google.com/group/cfa-labs > > git project > https://github.com/cfalabs/Open311Dashboard What is this you're promoting? I can find the answer, but not from the linked GitHub project nor from the

[Rails] Link_to not doing the expected.

2010-11-22 Thread MDM
Can anyone explain why a Link_to inside a table should print out the link if the field is null, but print out the field if it contain data(text) in both rails 3 and 2.3.5. If the field is nul it prints out:- "/dsplaces/100? country=UK&area=London" If the field contains data (text) it prints out

Re: [Rails] Re: Weird and inconsistent Model issues

2010-11-22 Thread Aedorn Varanis
Oh wow, I didn't even see that that there was already a defined TestCase class. Well, that makes much more sense! So I'm not going insane, just ... blind. Good to know! As for send ... I thought I read once upon a time that send took more processing time or something similar. I guess it doesn't mat

[Rails] Re: Freezing Rails v2.3.5 - dev.rubyonrails.org down?

2010-11-22 Thread Frederick Cheung
On Nov 22, 6:00 pm, Frank Smither wrote: > Hello, we are trying to freeze our rails app to v2.3.5 and we are > running this command: > rake rails:freeze:edge RELEASE=2.3.5 Have you tried the freeze:gems task? that shouldn't have to fetch anything from the network. Fred > > But it is failing tr

[Rails] Re: Weird and inconsistent Model issues

2010-11-22 Thread Frederick Cheung
On Nov 22, 10:37 pm, Aedorn Varanis wrote: > I feel like I'm missing something rather important in both > circumstances, but I can't seem to figure either out: > > 1) I have a model named TestCase - > class TestCase < ActiveRecord::Base >   belongs_to :test_suite >   scope :queued, lambda { wher

[Rails] How do I internationalize/localize my rails plugin?

2010-11-22 Thread Paul Schreiber
I wrote a validates_word_count plugin. I would like to store the error messages in a YAML file so they can be easily translated. Full source: https://github.com/paulschreiber/validates_word_count/ My plugin's file layout looks like this: validates_word_count/ init.rb lib/ validate

[Rails] Weird and inconsistent Model issues

2010-11-22 Thread Aedorn Varanis
I feel like I'm missing something rather important in both circumstances, but I can't seem to figure either out: 1) I have a model named TestCase - class TestCase < ActiveRecord::Base belongs_to :test_suite scope :queued, lambda { where("test_cases.suite_id IS NOT NULL") } scope :assigned_to

[Rails] How do I internationalize/localize my rails plugin?

2010-11-22 Thread Paul Schreiber
I wrote a validates_word_count plugin. I would like to store the error messages in a YAML file so they can be easily translated. Full source: https://github.com/paulschreiber/validates_word_count/ My plugin's file layout looks like this: validates_word_count/ init.rb lib/ validat

[Rails] Rake test picks up logger configuration from my development.rb

2010-11-22 Thread Alexander Gitter
Hi, I recently added "config.logger = Logger.new(STDOUT)" to my development.rb and noticed that "rake test" suddenly prints SQL queries to the console as well. I then added "config.logger = Logger.new("/dev/null")" to test.rb, but that didn't help the issue. Aren't the tests supposed to use the c

[Rails] Conditional haml vs. erb precedence

2010-11-22 Thread Foliosus
Hi all, I've got a Rails app that I'm converting over to using HAML as part of a redesign. During the conversion process, we want to keep the new views away from most of our users until they're ready for public beta. Is there a master switch I can flip, like in a controller before_filter, that wou

[Rails] aasm code into module

2010-11-22 Thread Me
Is it posible to move big aasm code into a module and then include it into a class and it work correctly? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@googlegroups.com. To unsubscri

[Rails] Re: Issue using bundler

2010-11-22 Thread Jeremy Woertink
> Does the above mean you are trying to use rails 3.0.1 with ruby 1.8.7? > If so there is the problem. > >> /Library/Ruby/Site/1.8/rubygems/installer.rb:164:in `install': >> activesupport requires Ruby version >= 1.8.7. (Gem::InstallError) > > That says you need a later ruby for activesupport 3 I

Re: [Rails] Issue using bundler

2010-11-22 Thread Colin Law
On 22 November 2010 21:20, Jeremy Woertink wrote: > I run bundle install, or bundle update, and it fails. I'm using RVM, so > if I switch to Ruby 1.9.2, this works fine, but using Ruby 1.8.7 it > fails. Any idea? > > jeremy-woertinks-imac:winovations jeremywoertink$ bundle update > Fetching source

[Rails] Issue using bundler

2010-11-22 Thread Jeremy Woertink
I run bundle install, or bundle update, and it fails. I'm using RVM, so if I switch to Ruby 1.9.2, this works fine, but using Ruby 1.8.7 it fails. Any idea? jeremy-woertinks-imac:winovations jeremywoertink$ bundle update Fetching source index for http://rubygems.org/ Using rake (0.8.7) Using RedCl

Re: [Rails] Re: Multiple URLs - same server

2010-11-22 Thread Rob Biedenharn
On Nov 22, 2010, at 2:58 PM, Brian Penrose wrote: Rob Biedenharn wrote in post #963175: I notice that you're redirecting to https. For that to work, you will need to have separate IP addresses because the SSL is made at the IP level before the name is known. After that, only one name will w

[Rails] Re: select helper with boolean and null/nil values

2010-11-22 Thread David Cross
Sorry, I took a break for the weekend, here it is in .tgz format: http://www.cs.rpi.edu/~crossd/selecttest.tgz -- David E. Cross On Nov 20, 11:30 am, pepe wrote: > Hi David, > > Can you post your application in a different format? I need a C > compiler to install bzip2 and I'd rather not go int

Re: [Rails] Re: Apache config for blocking php exploit requests that is compatible with Rails under Passenger

2010-11-22 Thread Walter McGinnis
Yes, I read that. It's a trade-off and for now I would rather keep the high performance on for the virtual host. Not a big deal really, but was hoping for a non-rewrite solution (FilesMatch also doesn't look to work with PassengerHighPerformance). Always good to check though. Thanks for your inp

[Rails] Rails 3 - Custom Inflection Not Working?

2010-11-22 Thread n0d dy
I'm using Rails (3.0.3) and have the following code in initializers/inflections.rb ActiveSupport::Inflector.inflections do |inflect| inflect.irregular('nursery', 'nurseries') end >From the console I'm getting: "nursery".pluralize => "nurseries" "nurseries".singularize => "nurseries" I should be

[Rails] Re: Multiple URLs - same server

2010-11-22 Thread Brian Penrose
Rob Biedenharn wrote in post #963175: > I notice that you're redirecting to https. For that to work, you will > need to have separate IP addresses because the SSL is made at the IP > level before the name is known. After that, only one name will work > (unless perhaps you have a wildcard certific

[Rails] preferring json to other ajax approaches...

2010-11-22 Thread Lille
Hi, After experience with some really ugly RJS code I developed to handle a very involved ajax-updating page that shows the result of various numeric calculations, I'm tempted to drop RJS in favor of jQuery and JSON. This way, I figure, my client side script can decide what to do with response dat

Re: [Rails] Multiple URLs - same server

2010-11-22 Thread Rob Biedenharn
I notice that you're redirecting to https. For that to work, you will need to have separate IP addresses because the SSL is made at the IP level before the name is known. After that, only one name will work (unless perhaps you have a wildcard certificate and you're talking about subdomain

[Rails] Who wants to make a difference for America? :)

2010-11-22 Thread Khalid Shaikh
Check it out, join the group. http://groups.google.com/group/cfa-labs git project https://github.com/cfalabs/Open311Dashboard Its rails 3.0. I'm also wondering the best s/w to use to run multiple stacks on my macbook pro. -- You received this message because you are subscribed to the Google G

[Rails] Rails requires RubyGems >= 1.3.2. Please install RubyGems and try again

2010-11-22 Thread Franck
Hello, I've been trying to deploy a Ruby on Rails application and everything works fine until it tries to run the DB migration scripts, at which point it fails: *** [err :: test-app1] Rails requires RubyGems >= 1.3.2. Please install RubyGems and try again: http://rubygems.rubyforge.org *** [err :

[Rails] Multiple URLs - same server

2010-11-22 Thread Brian Penrose
Hi all, I know there have been postings regarding this, which I've read, but continue to be spinning wheels. I am attempting to implement two URL's for our server (for posting purposes, let's call them example1.com and example2.com) that point to two separate applications...using Apache and Mongr

[Rails] Freezing Rails v2.3.5 - dev.rubyonrails.org down?

2010-11-22 Thread Frank Smither
Hello, we are trying to freeze our rails app to v2.3.5 and we are running this command: rake rails:freeze:edge RELEASE=2.3.5 But it is failing trying to download the zip from dev.rubyonrails.org (which appears to be down): Downloading Rails from http://dev.rubyonrails.org/archives/rails_2.3.5.zip

[Rails] Rails-3.0.3 gives Completed 406 Not Acceptable

2010-11-22 Thread James Byrne
Updating to Rails-3.0.3 resulted in 14 tests failing. Investigating one of them I discover that this message "Completed 406 Not Acceptable in 223ms" is being returned instead of the expected page. This error indicates tha the format of the request cannot be satisfied. Usually a format specificat

Re: [Rails] Ruby on Rails Developer

2010-11-22 Thread Gintautas Šimkus
Hey, Do you mean you are paying up to nearly 10 000 pounds for a month? :O Great you are cool :) I got nearly 1 year of professional experience at assembla.com (add up t o 1 year of freelance work for which they hired me :) (BDD, RPC stuff like Ernie, repositories: GIt and a little of SVN, and som

[Rails] Re: database & rubygems

2010-11-22 Thread Aicha Aicha
lol, thanks! Yep, I'll update my ruby's version! But I thing that I'll use mysql as database, sqlite ask for so much thing, even when I type sudo gem install libsqlite3-dev, I've ERROR: Could not find a valid gem 'libsqlite3-dev' in any repository. Yep, I can start my DB in console and I've writ

[Rails] Ruby on Rails Developer

2010-11-22 Thread Ar Love
Hello, I'm hoping you might be interested in the below position, or be able to make a suggestion as to which other sites I can post this job: Web developer required Fast growing start up with seed funding behind it is looking for a strong, passionate web developer. Site is already created and wo

[Rails] Re: can't activate i18n (~> 0.4.1, runtime) for ["mail-2.2.10"

2010-11-22 Thread Asif Jan
well doing a fresh installation of ruby 1.9.2 , rubygems 1.3.7 (all from sources) resolved the problem. aj On Nov 22, 2:47 pm, Asif Jan wrote: > Hi > > Using RoR 3.0.3 on Mac OS X, and am running into the dependency > problems. Please see the error below. I thought bundler was meant to > precis

[Rails] Re: rubygem 1.3.7 install problem

2010-11-22 Thread Julian G.
Thanks Dmitriy. That solved my problem. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@googlegroups.com. To unsubscribe from this group, se

[Rails] Re: rubygem 1.3.7 install problem

2010-11-22 Thread Dmitriy B.
Julian G. wrote in post #963097: > I am having the same problem. I am on an ubuntu system: Ubuntu 10.04 LTS > - the Lucid Lynx . I downloaded and installed ruby 1.9.2, and ruby -v: > ruby 1.9.2p0 (2010-08-18 revision 29036) [i686-linux] > > gem -v is 1.3.7. > > But when I try to run gem install ...

Re: [Rails] Should be obvious, but how do I even know what versions of ruby are available for rvm to use with rvm install?

2010-11-22 Thread Rob Biedenharn
On Nov 22, 2010, at 3:28 AM, Colin Law wrote: On 22 November 2010 03:59, Irfan Ahmed wrote: I am also using rails 2.3.2 and I use gem to install rails the older version. First install ruby from the repository and then install rails using gem, install mysql or any database adapter. this is th

[Rails] Re: Should be obvious, but how do I even know what versions of ruby are available for rvm to use with rvm install?

2010-11-22 Thread gezope
Yes, definitely! Using RVM also prevent many problems in the future when you will update. Answer for the main question: "How in the world do I found out the name of it?" Check it on Github, releases are tagged. You made a very good decision with RVM, good luck, Zoltán On nov. 22, 08:28, Colin La

Re: [Rails] Including MS Word in a DIV

2010-11-22 Thread Walter Lee Davis
You're going to need to strip off everything except the content of the Body tag, and you're going to need to police what is inside the body for illegal constructs that could blow up the rest of your page. That means maybe something like Nokogiri to parse the HTML into an internal DOM tree,

[Rails] can't activate i18n (~> 0.4.1, runtime) for ["mail-2.2.10"

2010-11-22 Thread Asif Jan
Hi Using RoR 3.0.3 on Mac OS X, and am running into the dependency problems. Please see the error below. I thought bundler was meant to precisely avoid these problems? thanks a lot for your help I tried bundle install / check , deleted old lockfile and regenerate it, but nothing worked. rails g

[Rails] Re: technologies needed to learn to be a good ror developer

2010-11-22 Thread Ar Chron
venkata reddy wrote in post #963052: > Hi everybody... >I am venkey here. very interested to learn ruby on > rails.Though i have not had any experience with the web development, > i want to learn ror as quickly as i can.I installed ror successfully.i > am just starting to build sam

[Rails] Client Needs : Ruby on Rails in NJ ( fast moving position )

2010-11-22 Thread sarah Fernandes
Client Needs : Ruby on Rails in NJ ( fast moving position ) Pls send resumes to sa...@larktechinc.com Or call 732-372-7051 Here is the requirement for software developer position Expertise in developing applications for the LINUX environment using open-source components. Experience in design, d

[Rails] Re: technologies needed to learn to be a good ror developer

2010-11-22 Thread DimiDimi
It is a rather hard question. But an excellent starting point is the "Agile Wen Development with Rails" book (http://pragprog.com/titles/ rails3/agile-web-development-with-rails) and the screencasts by at http://railscasts.com/ . These will get you started but I recommend that you find a real proje

[Rails] Re: database & rubygems

2010-11-22 Thread gezope
Hey Aicha, don't worry, your English understandable, and everyone was beginner once ;) just keep trying and not to give up! I think it would be a good idea to install ruby1.9. A good way for it is using RVM http://rvm.beginrescueend.com/ I see, your databases are on place. If you have ruby1.8 the

[Rails] Re: Override Rails headers

2010-11-22 Thread Shea Barton
All I can find in this guide is the original response.headers["header"] = "whatever", that I posted in my question. This doesn't work for most common headers for me, including Location redirects, Set-Cookie, and Content-Type, which I am assuming happens because rails uses these headers again la

[Rails] Re: Override Rails headers

2010-11-22 Thread gezope
Hello, why it doesn't work for you? I think the most important is to really pay attention to params hash can have a hash in it, so harder to find if we make mistake. http://guides.rubyonrails.org/action_controller_overview.html Here the second part is your answer, and I think the examples are go

[Rails] Re: local installation of ruby and of rails?

2010-11-22 Thread gezope
Hello, On your local try out RVM: http://rvm.beginrescueend.com/ These kind of changes are wise to do in test environment. So you won't have the risk. (I also suggest some test framework and test-driven development - just try it out, you will feel more comfortable.) But I'm afraid different vers

[Rails] Re: Access denied for user 'root'@'localhost' (using password: NO)

2010-11-22 Thread gezope
Hello Renato, Find the file yourapp/config/database.yaml, open it, and set it well. You have to know your database username+password, if any. Any also the database have to installed, and the database's gem also. Check it with 'mysql -v' and 'gem list m' or 'sqlite3 -v' and 'gem list sq', you will

Re: [Rails] Re: Re: Why is my models can't be related using has_one and belongs_to?

2010-11-22 Thread arga aridarma
Thanks all for the help. It's quite clear to me now, relating this problem. And sorry for the late reply, i was away for sometimes and there's a stockpile of emails flowing into my inbox :)) Regards Arga -- You received this message because you are subscribed to the Google Groups "Ruby on

[Rails] Including MS Word in a DIV

2010-11-22 Thread Ralph Shnelvar
Let's say that I have an MS Word document saved as an HTML document. I want to present this document as a div; that is, make the MS HTML sort of a partial. Is there a RoR facility to do so? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to th

[Rails] Background thing for Rails 3?

2010-11-22 Thread Heinz Strunk
Hey people, I've been looking for a easy and simple background thing for Rails 3 for more than 3 hours now and couldn't find anything useful. I've been using Rufus Scheduler before I switched to Rails 3 which worked like a charm but unfortunately it's not working in Rails 3 anymore. So basically

[Rails] Re: rubygem 1.3.7 install problem

2010-11-22 Thread Julian G.
Dmitriy B. wrote in post #960995: > Any updates on this? > I just compiled ruby 1.9.2 from source and tried to install rubygem > 1.3.7 (I did check if it was already installed on not) but it errors > out. Does anyone know what is the problem and how to fix it? > > I am having the same problem. I am

[Rails] Re: How to get rspec running?

2010-11-22 Thread Markus Zm
Thanks for you reply! Actually I haven't solved the problem, meaning I still don't know why it happened and why it seems to work now. But I had recognized that rspec was working in the other (tutorial) application. So I just created a new rails application and copied my created/edit files into

Re: [Rails] phpmyadmin equivalent in ruby

2010-11-22 Thread Michael Pavling
On 22 November 2010 08:35, Colin Law wrote: > On 22 November 2010 08:12, Tom Mac wrote: >> Why I asking this is to avoid php installation on server. Is there any >> phpmyadmin equivalent in ruby and also can be available as a linux >> package? > > Why do you need an equivalent, why not just use p

Re: [Rails] phpmyadmin equivalent in ruby

2010-11-22 Thread Peter De Berdt
Or Sequel Pro through an SSH tunnel (which is part of the connection dialog) if you're on the Mac: http://www.sequelpro.com/ On 22 Nov 2010, at 10:04, Irfan Ahmed wrote: you can use mysql query browser which is gui based package equivalent to phpmyadmin.. I am using and I found the best gui t

[Rails] Re: SQLServer 2008 and Windows XP

2010-11-22 Thread Magnus D.
I'm still having some problems with SQLserver adapter. I have a model called Post, and I try to select a single post object with Post.first in the rails console. But I get an error. $ rails console Loading development environment (Rails 3.0.2) irb(main):001:0> fp = Post.first ActiveRecord::State

[Rails] Re: Re: wkhtmltopdf and PDFkit

2010-11-22 Thread Conor Nugent
Hi David, I'm really glad the post helped! Thank you for all your advise too! -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@googlegroups.

Re: [Rails] Re: Re: rake test:unit gives Command failed with status (1):

2010-11-22 Thread Colin Law
On 22 November 2010 09:01, Neil Bye wrote: > Colin Law wrote in post #963001: >> On 21 November 2010 17:52, Neil Bye wrote: >>> ruby index.rb >>> >>> which I think was the problem. Thanks everyone. >> >> For the record can you tell us where the offending file was?  Was it >> called index.rb? >>

[Rails] Re: images not displaying

2010-11-22 Thread venkata reddy
thank u .it worked... On Nov 22, 1:32 pm, Colin Law wrote: > On 22 November 2010 04:53, venkata reddy wrote: > > > [...] > > > width="800" height="600" /> > > If you have images in public/images just reverence by > src="/images/bg.gif"  (don't forget the leading /).  Alternatively use > ima

Re: [Rails] phpmyadmin equivalent in ruby

2010-11-22 Thread Irfan Ahmed
you can use mysql query browser which is gui based package equivalent to phpmyadmin.. I am using and I found the best gui tools for mysql query browsing...u will found it in your synaptic package manager or ubuntu software center from your application menu. Best Wishes "Shuvecha" On 11/22/10

[Rails] Re: Re: rake test:unit gives Command failed with status (1):

2010-11-22 Thread Neil Bye
Colin Law wrote in post #963001: > On 21 November 2010 17:52, Neil Bye wrote: >> ruby index.rb >> >> which I think was the problem. Thanks everyone. > > For the record can you tell us where the offending file was? Was it > called index.rb? > > Colin It was called index.rb. There was one in app

Re: [Rails] phpmyadmin equivalent in ruby

2010-11-22 Thread Colin Law
On 22 November 2010 08:12, Tom Mac wrote: > Why I asking this is to avoid php installation on server. Is there any > phpmyadmin equivalent in ruby and also can be available as a linux > package? Why do you need an equivalent, why not just use phpmyadmin? Colin -- You received this message beca

Re: [Rails] Re: images not displaying

2010-11-22 Thread Colin Law
On 22 November 2010 04:53, venkata reddy wrote: > [...] > width="800" height="600" /> If you have images in public/images just reverence by src="/images/bg.gif" (don't forget the leading /). Alternatively use image_tag( "bg.gif" ) which will look in public/images. Colin -- You received this

[Rails] Re: local installation of ruby and of rails?

2010-11-22 Thread Javix
If you use Rails < 3.0 version, so its version is defined in your_app/ config/environment.rb file as RAILS_GEM_VERSION = '2.3.8' unless defined? RAILS_GEM_VERSION To get your RoR application running on a dedicated host, you should have the same Rails and gem versions on the server that you use in

[Rails] Re: Apache config for blocking php exploit requests that is compatible with Rails under Passenger

2010-11-22 Thread Frederick Cheung
On Nov 22, 12:08 am, Walter McGinnis wrote: > > At a very simple level something like > > > RewriteRule \.php$ - [F] > > > Would rewrite any request where the url ended in .php to 403s > > Tried it. I have Passenger in high performance mode and it looks to > disable mod_rewrite. > > http://www.m

Re: [Rails] Should be obvious, but how do I even know what versions of ruby are available for rvm to use with rvm install?

2010-11-22 Thread Colin Law
On 22 November 2010 03:59, Irfan Ahmed wrote: > I am also using rails 2.3.2 and I use gem to install rails the older > version. First install ruby from the repository and then install rails using > gem, install mysql or any database adapter. this is the flow I actually > followed. If you want then

[Rails] technologies needed to learn to be a good ror developer

2010-11-22 Thread satya
Hi everybody... I am satya here. very interested to learn ruby on rails.Though i have not had any experience with the web development, i want to learn ror as quickly as i can.I installed ror successfully.i am just starting to build sample applications.so anybody can tell me the pat

[Rails] phpmyadmin equivalent in ruby

2010-11-22 Thread Tom Mac
Why I asking this is to avoid php installation on server. Is there any phpmyadmin equivalent in ruby and also can be available as a linux package? Thanks in advance Tom -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby