Ruby on Rails is an open-source web development framework written in Ruby. Ruby on Rails follows the principle of convention over configuration, freeing you from having to re-invent things to stay productive. Ruby on Rails 4.0 is the latest edge version available.
2
votes
1answer
101 views
+100
How to troubleshoot slow performance on URL with Rails + Mongo
We could use advice on a scaling/ops issue.
We have a simple mobile app that runs on Rails 3.2.12 and uses MongoMapper instead of ActiveRecord. There is one database call that sporadically performs ...
2
votes
2answers
102 views
+150
404 Not Found error in deploying rails 3.2.12 app (with engines) to SUB URI on nginx/passenger
We need to deploy a rails 3.2.12 app to sub uri nbhy on a ubuntu 12.04 server. The rails app has 3 engines and one of them is authentify which is for user authentication. The main app's root pointing ...
2
votes
4answers
136 views
+50
stack level too deep (SystemStackError) when using both rspec and cucumber with ruby and rails
This is a question about what debugging strategy I should use when encountering a stack level too deep (SystemStackError) using Ruby and Rails.
I am seeing these errors when using either rspec or ...
0
votes
1answer
106 views
+300
Cannot run rake db:migrate, relation does not exist
I am trying to get a working app to work on linux 10.04 running on vagrant
I installed all relevant gems, installed postgresql 9.1.9 and when I am trying to run
rake db:migrate I am getting
rake ...
2
votes
2answers
55 views
+50
Wrapping up a method with ruby-progressbar gem
I am trying to use ruby-progressbar gem with ruby-git gem
My aim is to capture the dynamic progress bar during the git clone so that i can get the progress bar for this git clone
I am trying to use ...
1
vote
1answer
35 views
+150
Trying to implement HTTPS on selected pages which are making POST request
I am trying to implement HTTPS on selected pages which are making POST request in my rails 3.1 project. But not have any success after trying all kind of gems ssl_requirement,rack-ssl-enforcer. All ...