[Rails] [ANN] Rails 4.1.0.beta1 released

2013-12-17 Thread David Heinemeier Hansson
Hohoho, it's Xmas time, kids! We have a beta full of goodies for everyone who's been nice this year. Rails 4.1 is packed to the gills with more marvelous real-world feature extractions, bug fixes, and the tireless polish only a community full of Rails elves could bestow it with. While this is

[Rails] [JOBS] Hardcore Ruby on Rails Developer Needed

2013-12-17 Thread Alicia Guzman
Dream Staffing specializes in the placement of Web Design and Software Development professionals in contract positions throughout North America. Owned and managed by industry veterans, Dream Staffing is adept at finding talented professionals who will delight our clients. We are seeking

Re: [Rails] Uso de SPLAT

2013-12-17 Thread Marco Antonio Almeida
Hi Pablo, This is an international list, so if you want your answer you should write your question in English. For this one I will answer your question in private. *Marco Antonio Almeida*+45 31 65 28 84 Twitter: @marcoafilho | LinkedIn: marco-antonio-almeida

[Rails] Uso de SPLAT

2013-12-17 Thread Pablo Joaquim
Ola, sou novo com ruby e estou tentando aprender mais sobre ele, porem me deparei com um fato estranho. De acordo com o código a baixo eu vou ter duas saídas, porem não entendo o por que de ter valores diferentes quando uso a syntax sugar em conjunto com splat. Alguém pode me responder isso? cl

Re: [Rails] sub domain + different rails application

2013-12-17 Thread Norm Scherer
I use multiple virtual hosts with apache2 and phusion passenger for that problem. Works fine. Norm On 12/16/2013 11:15 PM, saravanan p wrote: Hello friends, Is there any way to implement the subdomain i.e two more rails application, but main domain is same. Ex: rails1.mainsite.com rails2.m

[Rails] Re: ActiveRecord and tiny_tds

2013-12-17 Thread ondeman...@gmail.com
After some more debugging I finally realized that the object actually had some data attached to it. It must have been the .inspect which fooled me into thinking it was empty. ai = Ipdb.where("[IP Address] = ?", ip) ai.each do |b| puts b["IP Address"] puts b.Information end This

[Rails] Creating a simple ToDo application with Ruby on Rails - Part Two

2013-12-17 Thread Lazarus Lazaridis
I just finished writing the second part of the tutorial. Creating a simple ToDo application with Rails - Part Two -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.

[Rails] Re: Menu selections too fast for Heroku?

2013-12-17 Thread Frederick Cheung
On Monday, December 16, 2013 6:38:12 PM UTC, Ruby-Forum.com User wrote: > > Thanks Jason, > > Is this common? > > Race conditions on the rails session do happen, and can't really be fixed with the default rails session store. With this the entirety of the session is in the cookie, and your re

[Rails] Seeking mentor...code review and employment assistance

2013-12-17 Thread greenrosaror
Greetings! For quite a while now, I have been trying to find a job in Ruby on Rails without any luck. For a few months I gained some production experience, and since then I have built and deployed two full-stack applications. I am wondering if anyone out there would be willing to review my c

[Rails] ActiveRecord and tiny_tds

2013-12-17 Thread ondeman...@gmail.com
Hi, I'm having some issues trying to run .find_by_sql against a Win MSSQL 2008 server. When I use the tiny_tds gem the query works without any issues. require 'rubygems' gem 'tiny_tds', '= 0.6.2' require 'tiny_tds' gem 'activerecord', '= 3.2.12' require 'active_record' require 'activerecord-sqls

[Rails] Re: sub domain + different rails application

2013-12-17 Thread ThoWac
Hi, if you use Apache Webserver and PhusionPassenger you can take a look her: http://www.modrails.com/documentation/Users%20guide%20Apache.html#working_with_apache_conf Am Dienstag, 17. Dezember 2013 07:15:05 UTC+1 schrieb saravanan p: > > Hello friends, > > Is there any way to implement the su

[Rails] Re: sub domain + different rails application

2013-12-17 Thread Karthik Sirasanagandla
Use a webserver like nginx to route traffic to different rails application. Sample config in nginx can be as below: *server {* * # Subdomain* * listen 80;* * server_name subdomain1.domain.com;* * location / {* *proxy_pass http://127.0.0.1:8000/;* * }* *}* *server {* * # Subdomain* * lis