[Rails] Re: [JOBS] Looking for a RoR Developer with 5+ years experience (NYC)

2013-04-23 Thread Aashish Kiran
Hi Aubrey Backman, I am Aashish a 'Ruby on Rails Developer'. I am having similar skills(a Ruby on Rails developer, heroku as deployment server, a Github user, RDBMS / NoSQL as databases) as follows: 5+ years of Ruby on Rails development experience Experience developing web-based

[Rails] New to Rails / Dont know PHP. Advice?

2013-04-23 Thread Flannel Beard
Hello all, FlannelBeard here. I've got a project coming up for work that I think can use rails. I want to impress my boss. It does require a database and it will need to process credit card information. *I am a front-end web developer. *I can tweak BASIC php, nothing major. I know how to

[Rails] Re: params in nested resources

2013-04-23 Thread ovargas27
I don't get why are you trying to do with regions if you're trying to filter houses by region, Why are there many regions instead of only one? On Saturday, April 20, 2013 1:53:35 PM UTC-7, Ruby-Forum.com User wrote: Hi, Already 2 ful days of trial and error...grgr. Can someone help me...

[Rails] Re: New to Rails / Dont know PHP. Advice?

2013-04-23 Thread Frederick Cheung
On Monday, April 22, 2013 9:55:46 PM UTC+1, Flannel Beard wrote: Hello all, FlannelBeard here. I've got a project coming up for work that I think can use rails. I want to impress my boss. It does require a database and it will need to process credit card information. *I am a

Re: [Rails] Re: New to Rails / Dont know PHP. Advice?

2013-04-23 Thread Jordon Bedwell
On Tue, Apr 23, 2013 at 3:51 AM, Frederick Cheung frederick.che...@gmail.com wrote: On Monday, April 22, 2013 9:55:46 PM UTC+1, Flannel Beard wrote: Hello all, FlannelBeard here. I've got a project coming up for work that I think can use rails. I want to impress my boss. It does require a

Re: [Rails] New to Rails / Dont know PHP. Advice?

2013-04-23 Thread Colin Law
On 22 April 2013 21:55, Flannel Beard flannelbeard1...@gmail.com wrote: Hello all, FlannelBeard here. I've got a project coming up for work that I think can use rails. I want to impress my boss. It does require a database and it will need to process credit card information. I am a front-end

[Rails] Re: enforce https for every page

2013-04-23 Thread Matt Jones
On Wednesday, 17 April 2013 11:29:43 UTC-4, Gianpiero Venditti wrote: Hello everybody, i'm using ruby 1.8.6 and rails 1.1.6 for my web app. Any particular reason you're using a 7-year-old version of Rails? You'd be *seriously* helped by upgrading to something more modern. My app is

[Rails] Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has occurred. Please se

2013-04-23 Thread kanna
Hi guys when i'm doing bundle install i got this type of error whats this? please help me. rajesh@rajesh:~/workspace/Cybermedia_Test$ bundle install Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has occurred. Please see the Bundler troubleshooting documentation

Re: [Rails] Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has occurred. Please se

2013-04-23 Thread Colin Law
On 23 April 2013 13:22, kanna vtrka...@gmail.com wrote: Hi guys when i'm doing bundle install i got this type of error whats this? please help me. rajesh@rajesh:~/workspace/Cybermedia_Test$ bundle install Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has

[Rails] Authenticating against external and then internal databases in rails

2013-04-23 Thread NN Dodhia
A system I'm building requires us to authenticate against our clients database to pull user information from their database. However, they also want us to allow external users to log in and access this system. To authenticate against their database we're using DeviseLDAPAuthenticatable, and

Re: [Rails] Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has occurred. Please se

2013-04-23 Thread Dheeraj Kumar
The latest bundler is 1.3.5. Try updating it using `gem update bundler` and then running the bundle command. -- Dheeraj Kumar On Tuesday 23 April 2013 at 6:01 PM, Colin Law wrote: On 23 April 2013 13:22, kanna vtrka...@gmail.com (mailto:vtrka...@gmail.com) wrote: Hi guys when i'm

[Rails] Examples of long AND WELL-WRITTEN Ruby scripts

2013-04-23 Thread Jason Hsu, Android developer
I'm looking for examples of Ruby scripts that are long AND well-written. I have a Ruby script for scraping information on stock ETFs and mutual funds and storing the data in a Postgres database at https://github.com/jhsu802701/bsf-scrape/blob/master/scrape.rb . While I need to make some minor

Re: [Rails] Examples of long AND WELL-WRITTEN Ruby scripts

2013-04-23 Thread Walter Lee Davis
On Apr 23, 2013, at 10:59 AM, Jason Hsu, Android developer wrote: I'm looking for examples of Ruby scripts that are long AND well-written. I have a Ruby script for scraping information on stock ETFs and mutual funds and storing the data in a Postgres database at

[Rails] Re: Examples of long AND WELL-WRITTEN Ruby scripts

2013-04-23 Thread Jason Hsu, Android developer
Walter, I've looked at the Ruby source code of a few games, and I'm starting to see what you're talking about. I see that more experienced Ruby developers don't cram everything into one file like I did. I see that I should be giving each class its own file, and I should be using Modules. I

[Rails] running bundle sometimes installs other gems than ones specified in Gemfile

2013-04-23 Thread John Merlino
Quick question. Often I add a gem to my Gemfile and then run bundle install and I notice that it installs a bunch of other stuff (in addition to what I wanted): Installing warden (1.2.1) Installing devise (2.2.3) Installing fastercsv (1.5.5) Installing formtastic (2.2.1) Installing has_scope

Re: [Rails] running bundle sometimes installs other gems than ones specified in Gemfile

2013-04-23 Thread Scott Ribe
On Apr 23, 2013, at 3:52 PM, John Merlino wrote: Does this mean that the gem I want to install is dependent on the aforementioned gems? Yes, one of the features is that it finds and installs dependencies for you, so you only have to list what you know that you're using directly, and not worry

[Rails] Re: running bundle sometimes installs other gems than ones specified in Gemfile

2013-04-23 Thread John Merlino
So this means I don't need to add devise to my Gemfile now and run a bundle because devise is already isntalled and fully functioning in my app? On Apr 23, 6:17 pm, Scott Ribe scott_r...@elevated-dev.com wrote: On Apr 23, 2013, at 3:52 PM, John Merlino wrote: Does this mean that the gem I

[Rails] Re: running bundle sometimes installs other gems than ones specified in Gemfile

2013-04-23 Thread Robert Walker
John Merlino wrote in post #1106692: So this means I don't need to add devise to my Gemfile now and run a bundle because devise is already isntalled and fully functioning in my app? No. This means that if you have devise in your gem file, and run bundle, all gems that devise depends on will

[Rails] New open source tool: Pull Request Roulette

2013-04-23 Thread Dave Aronson
I just launched a new tool for Open Source projects: Pull Request Roulette (http://www.pullrequestroulette.com). Check it out and let me know what you think. -- Dave Aronson, the T. Rex of Codosaurus LLC, secret-cleared freelance software developer available for contracts or temp employment.