[Rails] Rails + Firebird (legacy database)

2013-08-01 Thread Edgar Gonzalez
i am trying to create some JSON services for a legacy database i have in firebird. I have installed firebird adapter and it seems it is working but is always throwing an error: Fb::Error: Undefined name Dynamic SQL Error SQL error code = -204 Table unknown MSFCLIENTES At line 1, column 45 :

[Rails] Re: Hosting of Ruby on Rails3 App

2013-08-01 Thread Petr
I would recommend to try DigitalOcean - Cheap SSD cloud servers. I am running there few Rails apps now and I am satisfied. I will be glad if you will use this refferal link - https://www.digitalocean.com/?refcode=ba7c768ebb79 . Thank you. -- Posted via http://www.ruby-forum.com/. -- You

[Rails] Re: Remember me (Devise) not working for me.

2013-08-01 Thread bacrossland
On Wednesday, July 31, 2013 10:32:57 AM UTC-5, Fahim Patel wrote: Thanks lot bacrossland . Best Regards Fahim You're welcome. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails

[Rails] Required :Embed voice recorder on a webpage for a rural innovation project

2013-08-01 Thread sunandan madan
Dear Ruby Community, We are a startup (Dhwani Rural Information Systemshttp://dhwani.herokuapp.com) who help build customized and scalable ICT solutions for NGO's and Development Agencies by providing them a tool to send critical information in rural areas as a voice call. All the ngo has to do

Re: [Rails] Required :Embed voice recorder on a webpage for a rural innovation project

2013-08-01 Thread Dheeraj Kumar
Use https://code.google.com/p/wami-recorder/ -- Dheeraj Kumar On Thursday 1 August 2013 at 4:58 PM, sunandan madan wrote: Dear Ruby Community, We are a startup (Dhwani Rural Information Systems (http://dhwani.herokuapp.com)) who help build customized and scalable ICT solutions for

RE: [Bangalore RUG] Re: [Rails] Required :Embed voice recorder on a webpage for a rural innovation project

2013-08-01 Thread Satish Kota
You might also want to checkout Red5. it can do both audio and video. Thanks and Regards Satish N Kota From: bangalore...@googlegroups.com [mailto:bangalore...@googlegroups.com] On Behalf Of Dheeraj Kumar Sent: Thursday, August 01, 2013 5:23 PM To: rubyonrails-talk@googlegroups.com Cc:

[Rails] Need suggestion on best gems for Versioning and Extending a model.

2013-08-01 Thread senthil kumar
Hi All, We are starting a new project which will have lots of forms. Each form will represent a single table, but will have many associations to other models. This form's fields can be extended on the fly. Versions needs to tracked for the models and any point of time the version can be

[Rails] Ruby 3 How to get username and password from Ruby app DB and post them to Joomla admin login

2013-08-01 Thread Manos Pappas
I have a model in my RoR app. Two of the attributes of this model is username and password, which are the login details of an already installed Joomla site. I would like to use a form in RoR app and when the user click on the submit button to get these details from my app and post them to

[Rails] error while saving cache.

2013-08-01 Thread Ravi Desai
Hello all, I get the following error -- Started GET / for 127.0.0.1 at 2013-07-31 11:01:25 -0400 Processing by HomeController#index as */* Rendered home/index.html.haml within layouts/application (85.0ms) Warning. Error encountered while saving cache

[Rails] Looking for a job

2013-08-01 Thread Pallavi Shastry
Hey all, This is Pallavi from Bangalore . I hold a BE degree from BMSIT in Computer science stream. I passed out in june 2013 . It would be nice if you guys can help me find a job in startups working on Rails. I'm one of the fellow student of Rails girls summer of code (RGSoC) 2013. Thank

[Rails] Planning an application - what is the optimal MVC setup?

2013-08-01 Thread Martin Asser Hansen
I am building a site for users where these can create a bunch of scaffolds and for each scaffold the user can create a bunch of tracks. Now, it should be possible for a user to share scaffolds with other users (this is were I am stuck). Same for tracks. So the main resources are users,

[Rails] Re: [JOBS] RoR, Bangalore Exp 4-6 Years - Tavant Technologies

2013-08-01 Thread Pallavi Shastry
Hello Ma'am, Is there any opening for freshers ? I 'm very much interested in working on rails. On Friday, 26 July 2013 13:20:24 UTC+5:30, Shruthi Rangaraj wrote: Hi, Am heading the recruitment for an IT Company. Tavant Technologies is an IT solutions and services provider that employs

Re: [Rails] Proper rails deployment steps to DirectAdmin (or any hosting not focusing in apps) hosted server?

2013-08-01 Thread kaichanvong
I've found Nitrous really nice for testing apps somewhere in the cloud: https://www.nitrous.io/join/WWm_3k15gFU They encourage you to deploy apps (as others suggest) to heroku. NB. I've no affiliation to Nitrious, but that link does include my referral code for more Nitrous points. On

[Rails] Validations not working on complex DB transaction

2013-08-01 Thread masta Blasta
The models: class User has_many :institution_memberships belongs_to :account after_create :set_default_membership def set_default_membership if institution_memberships.empty? institution_memberships.create(default_data_from_account) end end end

[Rails] OmniAuth routing callback difference between rails 3.1 and rails 3.2

2013-08-01 Thread Vell
Hello all, I don't have much experience with OmniAuth and I am trying to figure out what is going on with my routes. My app is currently running rails 3.1.3. When I run rake routes this is what I see for my user call back: user_omniauth_callback/users/auth/:action/callback(.:format)

[Rails] Re: Testing if a controller renders a JS Template

2013-08-01 Thread João Pereira
I found the the xml_http_request or alias xhr for that test should render js to show the change password form do sign_in_user xhr :get, :enable_password_change assert_template :enable_password_change assert_response :ok assert assigns(:merchant_user)end http://jpereira.eu