Re: [Rails] Re: Ruby on Rails for Tablet Computers (Android OS)

2011-03-30 Thread Lee Farrell
yes, the full stack would be required. I am using rails3 btw. regards, Lee Farrell On Thu, Mar 31, 2011 at 7:39 AM, Igor Spivak wrote: > are you looking for the full rails stack? Or would a ruby-based MVC stack > work for you? Look at http://rhomobile.com/. > I have used them in the past, and

[Rails] Re: Ruby on Rails for Tablet Computers (Android OS)

2011-03-30 Thread cipher_neo
thanks for your reply. I think you are right in what you say. It would be too much of a memory hog to do such a thing. I will have to have a dedicated server for the hosting of the RoR app. I am building a point of sale system where the interface is html on a tablet pc, so I was digging into my

[Rails] [ANN] Rails 3.0.6.rc2

2011-03-30 Thread Aaron Patterson
OH EM GEE!!! I've pushed the 3.0.6.rc2 gem to rubygems.org! Please try it out! I will keep this announcement short and sweet. Please read the announcement for 3.0.6.rc1: http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/380568 If it seems too "3.0.6.rc1 centric", then try this:

Re: [Rails] habtm additional column

2011-03-30 Thread Jim Ruther Nill
On Thu, Mar 31, 2011 at 1:18 PM, Chris Kottom wrote: > Using HABTM prevents you from using the additional column, but you can get > the desired effect by replacing HABTM on each side with something like: > > I've ended up adding a new column to foo_bars which I can access fine without changing th

Re: [Rails] habtm additional column

2011-03-30 Thread Chris Kottom
Using HABTM prevents you from using the additional column, but you can get the desired effect by replacing HABTM on each side with something like: class Foo has_many :foo_bars, :join_table => "foo_bars" has_many :bars, :through => :foo_bars end On Thu, Mar 31, 2011 at 2:34 AM, Bryan Crossla

Re: [Rails] habtm additional column

2011-03-30 Thread Bryan Crossland
On Wed, Mar 30, 2011 at 7:24 PM, Jim Ruther Nill wrote: > Hi! > > In one of my current projects, I have an habtm relationship between two > models. To access the table > via console, I created the model for the join table. so for example, I > have > > class Foo > has_and_belongs_to_many :bars

[Rails] Re: How would you counter the following argument for developing in Rails

2011-03-30 Thread Alpha Blue
Thanks for the replies everyone. There is some very encouraging input here and I'm glad to know I'm not really alone. The good news is that I believe I'm going to be given the chance to develop and work on a very small management console to showcase some of the features in Rails. The downside

[Rails] habtm additional column

2011-03-30 Thread Jim Ruther Nill
Hi! In one of my current projects, I have an habtm relationship between two models. To access the table via console, I created the model for the join table. so for example, I have class Foo has_and_belongs_to_many :bars, :join_table => 'foo_bars' I created a FooBar class so I can actually ac

Re: [Rails] All the cities in the world

2011-03-30 Thread Bryan Crossland
On Wed, Mar 30, 2011 at 5:06 PM, David Zhu wrote: > Hi there, > > I need a database of most of the cities in the world for my application. I > know about the city database http://www.geonames.org , so I looked around, > and found this plugin for Ruby on Rails: > > http://github.com/joho/geonames-r

Re: [Rails] Where do I put code when I share a partial between two controllers

2011-03-30 Thread Walter Lee Davis
It doesn't matter all that much. If it has a stronger affinity for one of the controllers, then put it in that controller's view folder, and then in the other spot where you need to reference it, just put the leading /modelname/partialname on the render argument. So you have views

Re: [Rails] All the cities in the world

2011-03-30 Thread Philip Hallstrom
> I need a database of most of the cities in the world for my application. I > know about the city database http://www.geonames.org , so I looked around, > and found this plugin for Ruby on Rails: > > http://github.com/joho/geonames-rails > > I'm not sure if anyone has experience with somethin

[Rails] All the cities in the world

2011-03-30 Thread David Zhu
Hi there, I need a database of most of the cities in the world for my application. I know about the city database http://www.geonames.org , so I looked around, and found this plugin for Ruby on Rails: http://github.com/joho/geonames-rails I'm not sure i

[Rails] Where do I put code when I share a partial between two controllers

2011-03-30 Thread Albert Català
Hello, I'm new in Rails and much more in MVC, and I'm absolutly lost. The question is more clearly this: If I have a partial, than uses a controller/method (called X) for requery itself via JS, and this partial is viewed in two screens ( two controllers, menu and sarch). where do you place this c

Re: [Rails] Re: need to mimic threading across controllers

2011-03-30 Thread Ramon Leon
On 03/30/2011 11:49 AM, Xavier Noria wrote: I don't see any data loss necessarily, that depends on your application. That's a given. If W says all those fields are fine as they are, I trust W. I trust the last one. How do you know W is wrong a priori? You can't trust W, he never saw the cha

Re: [Rails] 2 records getting inserted in two different tables using one database call

2011-03-30 Thread Philip Hallstrom
> how would you execute 2 insert calls in just one database call in > controller...eg Inserting a record in Users and Blogs tables using just > one database/active record call. Why would you want to do this? If you're worried about atomicity, wrap it in a transaction... -- You received this m

[Rails] Re: Formatting for I18n

2011-03-30 Thread Paul Bergstrom
zindelo wrote in post #990018: > You might want to have a look at: > > # indentation requirements > http://www.yaml.org/spec/1.2/spec.html#Basic > > # i18n with active record > http://guides.rubyonrails.org/i18n.html#translations-for-active-record-models > > # example locale files, including active

[Rails] 2 records getting inserted in two different tables using one database call

2011-03-30 Thread Payal Patel
how would you execute 2 insert calls in just one database call in controller...eg Inserting a record in Users and Blogs tables using just one database/active record call. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby

Re: [Rails] Rails-3 Spurious NULL columns on INSERT

2011-03-30 Thread Bryan Crossland
On Wed, Mar 30, 2011 at 12:11 PM, James Byrne wrote: > I have a model in whose migration I have defined a datetime column that > both has a default value and sets null to false. As this is a > PostgreSQL database the default value is 'infinity', which may be the > source of the difficulty. > > W

Re: [Rails] Test errors in fuctional test after adding before_filter :login_required to controller

2011-03-30 Thread Franz Strebel
In your tests, you'll need to log in a user otherwise the before_filter in your controller redirects to the login page. I suggest you change a portion of your authentication code, in particular def logged_in? # current_user session[:user_id] end So instead of calling current_user, wh

Re: [Rails] Test errors in fuctional test after adding before_filter :login_required to controller

2011-03-30 Thread Phil Crissman
Phil 2011/3/30 Andre Schütz > Hello, > > I added the "before_filter" to my controllers to require a login of the > user. > > Here's an example of my Unit Controller with the added before_filter: > > IN THE ATTACHED FILE > > When executing the tests with rake test, I get different error messages

[Rails] Test errors in fuctional test after adding before_filter :login_required to controller

2011-03-30 Thread Andre Schütz
Hello, I added the "before_filter" to my controllers to require a login of the user. Here's an example of my Unit Controller with the added before_filter: IN THE ATTACHED FILE When executing the tests with rake test, I get different error messages. To show you my errors, I only executed the un

Re: [Rails] Re: need to mimic threading across controllers

2011-03-30 Thread Xavier Noria
On Wed, Mar 30, 2011 at 8:41 PM, Ramon Leon wrote: > Because you don't know it was a millisecond later, it could have been 10 > minutes later because user W sat there looking at the screen forever. User U > may have changed many fields on the model while user W just updated one and > you've now l

Re: [Rails] Re: need to mimic threading across controllers

2011-03-30 Thread Ramon Leon
On 03/30/2011 11:20 AM, Xavier Noria wrote: Nah, I don't think that's right. Versioning may make sense in some scenario (as my comment implicitly acknowledged), but calling the rule above "horrible" is denying the fact that it makes perfect sense in a lot of use cases. I called your saying web

Re: [Rails] Re: need to mimic threading across controllers

2011-03-30 Thread Xavier Noria
On Wed, Mar 30, 2011 at 5:59 PM, Ramon Leon wrote: > On 03/30/2011 02:26 AM, Xavier Noria wrote: >> >> Perhaps you know it, but in web programming "the last edit wins" is a >> meaningful rule that allows you to get rid of these controls. If two >> people edit the same form, the last received data

[Rails] render layout bug after upgrade from 2.3.10 to 3.0.5

2011-03-30 Thread Marcelo A.
Hey, I recently start to upgrade an 2.3.10 app to rails 3, most of the app is working, at least is booting now. But there is a problem that I can't understand: On the application controller from the all controllers inherit I have this line layout "default" on my views I have the file app/views

[Rails] Re: Metasearch eager loading instead of lazy loading

2011-03-30 Thread PsiPro
Eh nevermind... On Mar 30, 11:50 am, PsiPro wrote: > > Can you paste in code pertinent to what you are doing? Sounds like is not > > the case but I would think that somewhere you are calling .all on the search > > if you are getting such a result. > > It looks like this issue to me (I posted in t

[Rails] Re: Automatically add parent model id in nested resources

2011-03-30 Thread Peter
On Mar 29, 1:14 pm, Ben Alpert wrote: > (Copied from my stagnant SO post:http://stackoverflow.com/q/5462652/49485. > Feel free to answer there and get reputation if you like.) > > With nested resource routes in Rails 3, such as the following: > >     resources :magazines do >       resources :ads

[Rails] Rails-3 Spurious NULL columns on INSERT

2011-03-30 Thread James Byrne
I have a model in whose migration I have defined a datetime column that both has a default value and sets null to false. As this is a PostgreSQL database the default value is 'infinity', which may be the source of the difficulty. When I attempt to save this model ActiveRecord produces an SQL stat

Re: [Rails] Re: route helpers are not working

2011-03-30 Thread Phil Crissman
Phil On Wed, Mar 30, 2011 at 11:30 AM, John Merlino wrote: > Thanks for response, it outputs this: > > coreim_core_index GET/core > /coreim(.:format) {:action=>"coreim", > :controller=>"core"} > corer_core_index GET/core/corer(.:format) > {:action=>"corer", :c

[Rails] Re: route helpers are not working

2011-03-30 Thread John Merlino
> $rake routes > coreim_cores GET/cores/coreim(.:format) {:action=>"coreim", > :controller=>"cores"} > cores GET/cores(.:format) {:action=>"index", > :controller=>"cores"} ah, thanks for response. I didnt see this message on my last response. -- Posted via http:/

[Rails] Meta_search results anomaly using named scopes

2011-03-30 Thread David Kahn
I have a strange situation happening with meta_search. This is a little bit specialized as I am using two named scopes (added to meta_search's search_methods) which do a distance search. Curious if anyone has an idea before I start delving into the gem itself to track down. Individually each return

[Rails] Re: route helpers are not working

2011-03-30 Thread John Merlino
Thanks for response, it outputs this: coreim_core_index GET/core /coreim(.:format) {:action=>"coreim", :controller=>"core"} corer_core_index GET/core/corer(.:format) {:action=>"corer", :controller=>"core"} So I would expect this to work: coreim_core_path core

[Rails] Re: Formatting for I18n

2011-03-30 Thread zindelo
You might want to have a look at: # indentation requirements http://www.yaml.org/spec/1.2/spec.html#Basic # i18n with active record http://guides.rubyonrails.org/i18n.html#translations-for-active-record-models # example locale files, including active record errors https://github.com/svenfuchs/ra

Re: [Rails] route helpers are not working

2011-03-30 Thread David J . Hamilton
Excerpts from David J. Hamilton's message of Wed Mar 30 09:22:01 -0700 2011: > This rather surprised me, since I had the same expectations as you. Further > investigation suggestions inflections are to blame. suggestions → suggests. -- med vänlig hälsning David J. Hamilton -- You received this

Re: [Rails] route helpers are not working

2011-03-30 Thread David J . Hamilton
Excerpts from John Merlino's message of Wed Mar 30 08:45:50 -0700 2011: > So I try to implement: > > #routes > resources :core do > collection do > get 'coreim' > get 'corer' > end > end With that routes file: $ rake routes coreim_core_index GET/core/coreim(.:form

Re: [Rails] Re: need to mimic threading across controllers

2011-03-30 Thread Ramon Leon
On 03/30/2011 02:26 AM, Xavier Noria wrote: Perhaps you know it, but in web programming "the last edit wins" is a meaningful rule that allows you to get rid of these controls. If two people edit the same form, the last received data is the one that prevails, it doesn't matter who requested the fo

Re: [Rails] route helpers are not working

2011-03-30 Thread Phil Crissman
Phil On Wed, Mar 30, 2011 at 10:45 AM, John Merlino wrote: > Hey all, > > I find this in ruby guide: > > resources :photos do > collection do >get 'search' > end > end > It will also create the search_photos_url and search_photos_path route > helpers. > > So I try to implement: > > #route

[Rails] Re: Metasearch eager loading instead of lazy loading

2011-03-30 Thread PsiPro
> Can you paste in code pertinent to what you are doing? Sounds like is not > the case but I would think that somewhere you are calling .all on the search > if you are getting such a result. It looks like this issue to me (I posted in there as well) http://metautonomous.lighthouseapp.com/projects/

[Rails] route helpers are not working

2011-03-30 Thread John Merlino
Hey all, I find this in ruby guide: resources :photos do collection do get 'search' end end It will also create the search_photos_url and search_photos_path route helpers. So I try to implement: #routes resources :core do collection do get 'coreim' get 'corer' end

[Rails] Re: why does my method return an error if argument is not a number?

2011-03-30 Thread John Merlino
Thanks for all the responses. My understanding it's breaking when I try to pass nothing as an argument to that function because you can't pass an undefined variable as an argument. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google

Re: [Rails] Metasearch eager loading instead of lazy loading

2011-03-30 Thread David Kahn
On Wed, Mar 30, 2011 at 6:33 AM, PsiPro wrote: > Hey all, > > I have two models, in the first model > > Model1.search(nil) > > returns the metasearch builder as expected. > > for the the second model, the same search(nil) returns every object in > the database (all 60k of them). This obviously is

[Rails] Re: Formatting for I18n

2011-03-30 Thread Paul Bergstrom
It works if I add this in en.yml. errors: template: body: "" header: one: "" other: "" messages: too_short: "is too short (minimum is {{count}} characters)" But not in se.yml (the exact same stuff). I get: Usernam

[Rails] Re: Formatting for I18n

2011-03-30 Thread Paul Bergstrom
How do I add this to se.yml? Username translation missing: se.activerecord.errors.models.user.attributes.username.too_short -- 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

Re: [Rails] Communication between two apps?

2011-03-30 Thread Peter Bell
The main issues to consider are contention and scalability/performance. Can both apps be updated or just one? If both, what happens if both update the same field on the same record at the same time? If performance isn't an issue, a simple synchronous js call to a RESTful API should be fine, wa

[Rails] Re: Formatting for I18n

2011-03-30 Thread Paul Bergstrom
I can make it work sometimes, but then it doesn't. It seems to be extremely sensitive. What do I do wrong? I use TextMate. Any tips of how to write YAML? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Tal

[Rails] Communication between two apps?

2011-03-30 Thread Heinz Strunk
Hey folks, I have two different Rails apps and I would like t o sync the user databases. What's the best way to do that? I thought of whenever someone registers with one app the user information is posted to the other app and vice versa. What would you use for that? JSON? Sinatra? Thanks for the

[Rails] habtm only saving one record

2011-03-30 Thread jeb
I use habtm and a mulitline select to select which publications a journalist works on. class Journalist < ActiveRecord::Base has_and_belongs_to_many :publications end AND class Publication < ActiveRecord::Base has_and_belongs_to_many :journalists end When I make changes in the select, on

[Rails] update params from a view

2011-03-30 Thread Karácsony K.
Hi! I have a view, where i have a form. In the form, of course there is Submit button, but i have an another button, whit what peoples can download a plugin. I generate this plugin, from the form. But if they change the form, and click the generate button, before the submit, then they will get a

Re: [Rails] Ruby on Rails for Tablet Computers (Android OS)

2011-03-30 Thread Walter Lee Davis
I'm not aware of such a beast, but one thing to consider is memory and processing speed. We use Rails because it maximizes our (developer) productivity, and it does so at a cost of requiring a fairly studly server to run the back-end. I haven't tried running RoR on anything less than a 1/2

[Rails] Re: Formatting for I18n

2011-03-30 Thread Paul Bergstrom
Never mind. I understand that I should not use tab. -- 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-talk@googlegroups.com. To unsubscribe from th

[Rails] Re: ActiveRecord: when exactly is a record (model) saved to the database?

2011-03-30 Thread Alexey Muranov
After some thinking, i agree that there is no real need to ever change the primary key (the reason i want to use it in my application also as a foreign key is exactly that there will be no need to change this foreign key). If i need to copy attributes from one record to another, i can do it with at

[Rails] Metasearch eager loading instead of lazy loading

2011-03-30 Thread PsiPro
Hey all, I have two models, in the first model Model1.search(nil) returns the metasearch builder as expected. for the the second model, the same search(nil) returns every object in the database (all 60k of them). This obviously isn't what I want. I can't seem to figure out what I did to the mod

[Rails] Re: How would you counter the following argument for developing in Rails

2011-03-30 Thread johnwerry
Don't worry about rebuttal on this one. This battle is already over, but the war is not. I have much experience as a past consultant and manager of consultants dropping out of the sky into new customers where the shop is die-hard MS or whatever, with my "new" technology to change the shop over

Re: [Rails] help seeding my data base

2011-03-30 Thread Colin Law
On 30 March 2011 11:34, Michael Sagar wrote: > hi i am trying to seed my database using > rake db:seed > fist error I had was > uninitialized constant faker > so I added the faker gem > second was > uninitialized constant factory > so I added factory_girl_rails gem > third was > uninitialized cons

[Rails] Re: MySQL Installation Issues

2011-03-30 Thread bill gate
apt-get install libmysqld-dev will be ok . -- 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-talk@googlegroups.com. To unsubscribe from this group

[Rails] Re: ActiveRecord: when exactly is a record (model) saved to the database?

2011-03-30 Thread Alexey Muranov
Frederic, i think you are right, my problems/confusions are arising from the fact that on subsequent calls save uses UPDATE instead of INSERT. Is there a way to force it to use INSERT if the id is not used by another record? Alexey. -- Posted via http://www.ruby-forum.com/. -- You received t

[Rails] Formatting for I18n

2011-03-30 Thread Paul Bergstrom
How does the formatting in e g en.yml for I18n works? Are these 4 examples the same? --1 en: hello: Hello -- --2 en: hello: Hello -- --3 en: hello: Hello -- --4 en: hello: Hello -- -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscri

[Rails] Re: Ruby interpreter / version for greenfield project

2011-03-30 Thread Frederick Cheung
On Mar 30, 12:28 pm, Chris Kottom wrote: > Hi all, > > I wanted to ask the list about the current thinking on which of the many > interpreter and version options is currently favored for a brand new > project.  I've been using the most recent REE release for many recent > projects simply because

[Rails] help seeding my data base

2011-03-30 Thread Michael Sagar
hi i am trying to seed my database using rake db:seed fist error I had was uninitialized constant faker so I added the faker gem second was uninitialized constant factory so I added factory_girl_rails gem third was uninitialized constant license so I added license gem now I get the error undefined

[Rails] Re: ActiveRecord: when exactly is a record (model) saved to the database?

2011-03-30 Thread Alexey Muranov
Colin, i shall always listen to you better in the future. However, now i am taking this challenge personally. -- 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

[Rails] Ruby interpreter / version for greenfield project

2011-03-30 Thread Chris Kottom
Hi all, I wanted to ask the list about the current thinking on which of the many interpreter and version options is currently favored for a brand new project. I've been using the most recent REE release for many recent projects simply because a lot of gems and plugins hadn't yet been made 1.9 com

Re: [Rails] Re: ActiveRecord: when exactly is a record (model) saved to the database?

2011-03-30 Thread Colin Law
On 30 March 2011 12:04, Alexey Muranov wrote: > Frederick Cheung wrote in post #989934: >> Why are you changing the id of an existing record? > > Just to learn how it behaves. > I also plan an application where i want to use the primary key as a > foreign key for a has_one association, so there it

[Rails] Re: ActiveRecord: when exactly is a record (model) saved to the database?

2011-03-30 Thread Alexey Muranov
Frederick Cheung wrote in post #989934: > Why are you changing the id of an existing record? Just to learn how it behaves. I also plan an application where i want to use the primary key as a foreign key for a has_one association, so there it could (possibly) make sense to change it. If assignin

Re: [Rails] SessionsHelper in railstutorial.org: A good design?

2011-03-30 Thread Craig Stuntz
The SessionsHelper option makes the methods available from ApplicationController, yes, but it makes them available in any view, as well. That seems to me to be potentially too broad of a scope. Also, putting code which implements, say, a before_filter which conditionally redirects (as the rails

[Rails] Re: ActiveRecord: when exactly is a record (model) saved to the database?

2011-03-30 Thread Frederick Cheung
On Mar 30, 11:37 am, Alexey Muranov wrote: > Robert, it does not seem like i was changing attributes in-place. > > Here is what is going on, i do not understand how it can be a desired > behavior: > The core isssue is that changing id in activerecord is meaningless: every update statement is of

[Rails] Re: ActiveRecord: when exactly is a record (model) saved to the database?

2011-03-30 Thread Alexey Muranov
Robert, it does not seem like i was changing attributes in-place. Here is what is going on, i do not understand how it can be a desired behavior: I created a test application: $ rails new test_app $ cd test_app $ rails generate model Person name:string age:integer $ rake db:migrate In console:

[Rails] Ruby on Rails for Tablet Computers (Android OS)

2011-03-30 Thread cipher_neo
Hey guys, I am building an RoR web app that I would like to have fully contained in a tablet computer. I would like to run the server on it, and also use it as the client. Is this possible with any tablet computers out there at the moment? I really am aiming to get it working on the android tabl

[Rails] how to generate transactions using braintree gateway

2011-03-30 Thread Nagaraj
Hi all, I am sassy rails app for testing transaction. I have installed the sassy from git clone git://github.com/maccman/saasy.git when I launch the server script/server I am able to signup. but when I go to billing menu after changing the plan, it says no transaction so far How to create transac

Re: [Rails] Re: need to mimic threading across controllers

2011-03-30 Thread Xavier Noria
Just in case, do you really need that level of locking? Perhaps you know it, but in web programming "the last edit wins" is a meaningful rule that allows you to get rid of these controls. If two people edit the same form, the last received data is the one that prevails, it doesn't matter who reque

[Rails] Re: need to mimic threading across controllers

2011-03-30 Thread Frederick Cheung
On Mar 29, 10:15 pm, Lille wrote: > Thanks gents. > > The nice thing about pessimistic locking for me could be that it would > help avoid the user problem to which Walter refers and I wouldn't have > to add columns to all my models, as I would for optimistic locking. > I think you are misusing t

[Rails] Re: How would you counter the following argument for developing in Rails

2011-03-30 Thread Austin
There are a lot of good responses here already, especially with respect to ROI, so here's just a different way to look at the situation: Has your employer considered the LONG TERM licensing costs for Windows server several years down the road? Sure they might be buying licenses anyway, but as load

Re: [Rails] SessionsHelper in railstutorial.org: A good design?

2011-03-30 Thread Colin Law
On 30 March 2011 03:36, Craig Stuntz wrote: > railstutorial.org has a suggestion which strikes me as a little odd. > Here: > > http://ruby.railstutorial.org/chapters/sign-in-sign-out#code:sessions_helper_include > > ... it suggests this code: > > class ApplicationController < ActionController::Bas

Re: [Rails] need to mimic threading across controllers

2011-03-30 Thread Michael Pavling
On 29 March 2011 16:15, Lille wrote: > I think a reason I'm stumped here is that I have little deployment > experience. Yet, even so, how would I test the behaviors above, > locally? > > Thanks for any comments, The term you will want to Google for is "race condition". As Fred and Walter say, the

Re: [Rails] How would you counter the following argument for developing in Rails

2011-03-30 Thread Michael Pavling
On 29 March 2011 19:57, Alpha Blue wrote: > .. we strongly encourage the use of Microsoft IIS and using a product in > the .NET family for the code base.. encourage != enforce So say "We took your encouragement into consideration, but in the absence of any suggested, measurable benefits, we've st