[Rails] Re: Re: rubygems Problem on ubuntu 10.04

2013-11-07 Thread wu volity
Colin Law wrote in post #1125699: On 26 October 2013 09:05, wu volity li...@ruby-forum.com wrote: I need your help,Please..What is the meanning of '205.251.203.201' in '205.251.203.201 production.cf.rubygems.org'. It is an ip address. At one time it may have been (or may still be, but I

Re: [Rails] Re: Re: rubygems Problem on ubuntu 10.04

2013-11-07 Thread Jordon Bedwell
Colin Law wrote in post #1125699: On 26 October 2013 09:05, wu volity li...@ruby-forum.com wrote: I need your help,Please..What is the meanning of '205.251.203.201' in '205.251.203.201 production.cf.rubygems.org'. It is an ip address. At one time it may have been (or may still be, but I

[Rails] Re: heroku rake db:drop error PG::Error: FATAL: permission denied for database postgres

2013-11-07 Thread Raj Kiran Bhogaraju
Please follow: http://stackoverflow.com/questions/4820549/how-to-empty-db-in-heroku -- 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 unsubscribe from this group and stop receiving emails from

[Rails] Ruby on Rails for Beginners

2013-11-07 Thread Ben Curren
Hi, Every now and then I see people asking about the best way to learn Ruby... Checkout Getting Started with Ruby on Railshttp://www.skillsin.com/blog/?p=515 with several recommended Ruby tutorials. Regards, Ben -- You received this message because you are subscribed to the Google Groups

[Rails] Re: can anyone please suggest me from where I need to start learning ruby on rails..??

2013-11-07 Thread Ben Curren
Hi, Checkout Getting Started with Ruby on Railshttp://www.skillsin.com/blog/?p=515post with great pointers to recommended tutorials. Regards, Ben On Monday, November 4, 2013 3:13:29 PM UTC+2, Ramamohan Raju wrote: Hello, I am new to ruby on rails, can anyone please suggest me from where

[Rails] Re: Twitter and Facebook Integration

2013-11-07 Thread andreo
Updating rails is not an option? Well you should try to use oauth and write an interface for using both authentications. would make your life much easier. What do you use for normal authentication? -- You received this message because you are subscribed to the Google Groups Ruby on Rails:

[Rails] Free ad space if you donate to RVM

2013-11-07 Thread Karthikeyan A.K
Hello People, I am very much fond of rvm http://rvm.io/ . All the apps I have deployed runs on it. RVM needs funding so that it can be developed further. I want to hasten the process of funding. I have written a ruby programming book named ‘I Love Ruby’ thats totally free, you can get it here

Re: [Rails] Free ad space if you donate to RVM

2013-11-07 Thread Emil S
Just curious. Did you get any comment about the cover being sexist ? It may help to get more ads if you change the cover to something else , just my opinion . On 7 Nov 2013 20:55, Karthikeyan A.K mindas...@gmail.com wrote: Hello People, I am very much fond of rvm http://rvm.io/ . All the apps

Re: [Rails] Free ad space if you donate to RVM

2013-11-07 Thread Loganathan Sellapa
Rofl thread going to start again banglre ppl knw what I meant. Emil, For your safety dont discus further regarding his book cover... we tried it more than an yr nothin happened so far. Regards, Logan Sent from mobile device On 7 Nov 2013 22:21, Emil S emil.so...@gmail.com wrote: Just

[Rails] Ruby code on Chef as a ruby_block not working

2013-11-07 Thread Rodrigo de Campos
Hi Ruby hackers, I have very limited knowledge of the Ruby programming language, however, I need to implement on Chef (check-solo) something similar to augeas (which works with Puppet, but here I need a solution for Chef). I got the example code below but it's not working and I am now for a

Re: [Rails] Ruby code on Chef as a ruby_block not working

2013-11-07 Thread Tamara Temple
You should really ask about this in a chef support area, as it is something very specific to chef. As it is, you cannot define local functions in chef recipes, they have to be defined in libraries and called from such. Stackoverflow is really your best bet for help on chef things, or the #chef

[Rails] Re: can anyone please suggest me from where I need to start learning ruby on rails..??

2013-11-07 Thread Jason Hsu, Rubyist
My suggestions: 1. Learn object-oriented programming in Python. Python is easier to install, learn, and read than Ruby, and it paved the way to learning Ruby. 2. Learn Ruby before learning Rails. (tryruby.org provides a good introduction.) I know that the majority of other Rubyists will

[Rails] grouped_collection_select for has_many :through Association not Updating

2013-11-07 Thread Jim Miller
I have a scenario where I created a few has_many :through associations which I am having trouble updating. I do appreciate any help! Thank you! Here is my setup: ruby 1.9.3p392 Rails 3.2.13 Here is the scenario: I have 3 models that are related There are many Industries, many

[Rails] 240.chr different on Linux than Windows?

2013-11-07 Thread RVic
I'm sending a string through a socket connection from a rails app to another application. The string is delimited with 240.chr. On windows it runs fine, on Linux, it seems to put in a different looking character in for 240.chr. Is this some sort of encoding issue? Is there something simple

Re: [Rails] 240.chr different on Linux than Windows?

2013-11-07 Thread Tamara Temple
On Nov 7, 2013, at 7:54 PM, RVic rvinc...@hotmail.com wrote: I'm sending a string through a socket connection from a rails app to another application. The string is delimited with 240.chr. On windows it runs fine, on Linux, it seems to put in a different looking character in for

Re: [Rails] 240.chr different on Linux than Windows?

2013-11-07 Thread R Vince
I would think so, but the other side is a java socket listener app, and it isn't splitting on it in Linux, but is on Windows. On Thu, Nov 7, 2013 at 9:16 PM, Tamara Temple tamouse.li...@gmail.comwrote: On Nov 7, 2013, at 7:54 PM, RVic rvinc...@hotmail.com wrote: I'm sending a string

Re: [Rails] 240.chr different on Linux than Windows?

2013-11-07 Thread Tamara Temple
On Nov 7, 2013, at 8:20 PM, R Vince rvinc...@gmail.com wrote: I would think so, but the other side is a java socket listener app, and it isn't splitting on it in Linux, but is on Windows. On Thu, Nov 7, 2013 at 9:16 PM, Tamara Temple tamouse.li...@gmail.com wrote: On Nov 7, 2013, at

Re: [Rails] 240.chr different on Linux than Windows?

2013-11-07 Thread R Vince
On Thu, Nov 7, 2013 at 9:32 PM, Tamara Temple tamouse.li...@gmail.comwrote: You need to be looking at the binary data stream to see what is being sent/received. Don’t look at the glyphs at all. - Yes, you;re right -- I need to open up the receiving end and see what it's drinking in.

[Rails] How do I use Chef to manage database parameters?

2013-11-07 Thread Jason Hsu, Rubyist
As you know, the correct database name, username, and password in config/database.yml are needed for a Rails site to work. I understand that the elegant way to provide these parameters is to use the Chef tool. However, I can't figure out how to do this. I'll explain the solution I'm using

[Rails] Export CSV

2013-11-07 Thread Daynthan Kabilan
Hi friends, i am using csv export on my application. in my view file code is %- headers = [Transaction ID, Activity ID, Product Name,Customer Name, Ticket code] -% %= CSV.generate_line(headers).strip % %if !@trans.nil? @trans.length 0 % % @trans.each do |tran|% % if