[Rails] configuring ORACLE db to rails?

2012-12-24 Thread rails_fan
hi everyone i'm newer to ruby on rails...for the past few days i used default sqlite db with rails and now im in the situation to use ORACLE db in my upcoming application...can anybody give some suggestions that what are the tools needed to configure oracle with rails environment...step by step

Re: [Rails] configuring ORACLE db to rails?

2012-12-24 Thread Dheeraj Kumar
https://github.com/rsim/oracle-enhanced -- Dheeraj Kumar On Monday 24 December 2012 at 1:11 PM, rails_fan wrote: hi everyone i'm newer to ruby on rails...for the past few days i used default sqlite db with rails and now im in the situation to use ORACLE db in my upcoming application...can

[Rails] Unable to connect to api.heroku.com

2012-12-24 Thread thil
Hi , I am trying to deploy java war files using the command heroku deploy:war but i am getting error : unable to connect to api.heroku.com can anybody guide me to get it resolve. Thanks, Senthil -- You received this message because you are subscribed to the Google Groups Ruby on Rails:

Re: [Rails] Unable to connect to api.heroku.com

2012-12-24 Thread Dheeraj Kumar
Heroku seems to be online: https://status.heroku.com/ My guess is it's probably a DNS issue on your end. Try switching to OpenDNS or Google DNS -- Dheeraj Kumar On Monday 24 December 2012 at 3:04 PM, thil wrote: Hi , I am trying to deploy java war files using the command heroku

[Rails] Re: Getting rails installed on my mac

2012-12-24 Thread Pierre-Andre M.
That worked great Glen! Thanks so much for your help -- 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

Re: [Rails] Unable to connect to api.heroku.com

2012-12-24 Thread thil
On Monday, 24 December 2012 15:06:51 UTC+5:30, Dheeraj Kumar wrote: Heroku seems to be online: https://status.heroku.com/ My guess is it's probably a DNS issue on your end. Try switching to OpenDNS or Google DNS -- Dheeraj Kumar Hi Dheeraj Kumar, Thanks for your response.

Re: [Rails] Unable to connect to api.heroku.com

2012-12-24 Thread Jordon Bedwell
On Mon, Dec 24, 2012 at 3:46 AM, thil thil.1...@gmail.com wrote: I am under the corporate proxy/firewall setting. And api.heroku.com is dynamically changing their Ips. Heroku is not dynamically changing their IP's they are using round-robin DNS which is quite common to try and retain

[Rails] Re: How do you run custom script with rails ?

2012-12-24 Thread Frederick Cheung
. Thanks scott . I will keep this thing in mind .may be i will use deplayedjob or something like that . My motive is to start some script , it will take hour to finish. In this meantime, a user can also start same process again with different entity or cancel/resume ongoing processes . If

Re: [Rails] Unable to connect to api.heroku.com

2012-12-24 Thread thil
On Monday, 24 December 2012 15:34:21 UTC+5:30, Jordon Bedwell wrote: On Mon, Dec 24, 2012 at 3:46 AM, thil thil...@gmail.com javascript: wrote: I am under the corporate proxy/firewall setting. And api.heroku.comis dynamically changing their Ips. Heroku is not dynamically changing

[Rails] Re: Getting rails installed on my mac

2012-12-24 Thread Todd A. Jacobs
On Sunday, December 23, 2012 10:42:31 AM UTC-5, Ruby-Forum.com User wrote: as I mentioned in my initial question, commandline-tools (the suite in xcode that is relevant) is installed. In addition to installing the command line tools, you have to accept the Xcode license agreement, too. If

Re: [Rails] question about html-pipeline

2012-12-24 Thread Walter Lee Davis
On Dec 22, 2012, at 5:32 AM, William Herry wrote: thanks for you answer, it already out of any group, and I place it at the bottom still get error, maybe problem is not in installation (rails c can work) I place this code in my comment model (app/models/comment.rb) def markdown

[Rails] Re: Getting rails installed on my mac

2012-12-24 Thread Pierre-Andre M.
Perfect Todd. I did miss that part. Thank you -- 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

Re: [Rails] One model or many for a multistep form?

2012-12-24 Thread tamouse mailing lists
On Sat, Dec 22, 2012 at 1:56 PM, Mohamed Wael Khobalatte wael.khobala...@gmail.com wrote: Hey! That's actually a great answer, and thats I what I generally started doing. I looked at all the info I have and asked myself: Which of these sets of information would an admin want to manage?. From

[Rails] Devise application

2012-12-24 Thread Ricardo Jacobs
Hi, I am looking for someone who can build a Devise starter application with a number of things I need. I have read the forum rules but I'm not sure whether this post is allowed. If this is not the case, let me know. Here is a list of features that the starter application must contain: -

[Rails] Re: How do you run custom script with rails ?

2012-12-24 Thread Paritosh P.
Frederick Cheung wrote in post #1090089: . Thanks scott . I will keep this thing in mind .may be i will use deplayedjob or something like that . My motive is to start some script , it will take hour to finish. In this meantime, a user can also start same process again with different entity

[Rails] Bad idea to add/remove associations in after_find

2012-12-24 Thread Paul Olivers
I have 2 distinct types of users (artists and curators) in my system and they currently share all associations (eg has_one :portfolio). However, a curator shouldn't have a portfolio so I would like to only add that association when required. Obviously I could just return nil for that method, but

Re: [Rails] Bad idea to add/remove associations in after_find

2012-12-24 Thread tamouse mailing lists
On Mon, Dec 24, 2012 at 5:28 PM, Paul Olivers li...@ruby-forum.com wrote: I have 2 distinct types of users (artists and curators) in my system and they currently share all associations (eg has_one :portfolio). However, a curator shouldn't have a portfolio so I would like to only add that

Re: [Rails] question about html-pipeline

2012-12-24 Thread William Herry
thanks all you help the problem is that I need to restart my rails server :p thanks, merry christmas On Mon, Dec 24, 2012 at 11:59 PM, Walter Lee Davis wa...@wdstudio.comwrote: On Dec 22, 2012, at 5:32 AM, William Herry wrote: thanks for you answer, it already out of any group, and I

[Rails] Re: configuring ORACLE db to rails?

2012-12-24 Thread rails_fan
i have tried to connect oracle by doing the procedures mentioned as per in the above url and here it is my gem gem 'activerecord-oracle_enhanced-adapter', '~ 1.4.0' gem 'ruby-oci8', '~ 2.1.0' in that procedure they said to install oracle instant client there it has lot of files as below Version

Re: [Rails] Re: configuring ORACLE db to rails?

2012-12-24 Thread Dheeraj Kumar
Try adding ruby-oci8 before activerecord-oracle_enhanced-adapter in the gem file. Also, I guess you'll be fine with the basic package, but I haven't worked with oracle databases, so play around. -- Dheeraj Kumar On Tuesday 25 December 2012 at 11:36 AM, rails_fan wrote: i have tried to