Tagged Questions
Ruby on Rails is an open source full-stack web application framework written in Ruby. It follows the popular MVC framework model and is known for its "convention over configuration" approach to application development.
8
votes
9answers
878 views
+100
Where to put environment variables when using nginx and Passenger on Ubuntu
I was trying to set up a system similar to heroku where I would store secret keys in environmental variables and then access them from my rails app like this:
secret = ENV['EMAIL_PASSWORD']
I know ...
1
vote
3answers
60 views
+50
How to collect requested URL from user subscribing through Devise
I'm using rails 3. My whole app is restricted to registered Users using Devise 2.2.
My requirement :
Being able to say "user wanted to display the item X (as in item/:id was the requested url)when he ...
3
votes
4answers
98 views
+50
Rails - Where (directories) to put Models that are not Active Record
We are building out apps that have Models that are not database components.
We are curious to learn what others are doing in the rails community to address this subject.
We are struggling with where ...
2
votes
2answers
103 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 ...
0
votes
2answers
63 views
+50
Ruby on Rails, submit_tag with 3 checkboxes
I need something like this but in Ruby On Rails.
I have a code that selectes specific files to be either deleted or analyzed:
<% if @files%>
<%= form_tag what_to_do_files_path, method: ...
0
votes
1answer
32 views
+50
Rails/Postgres brittle test environment not creating correct datatypes
I'm using the citext extension because of Postgres's shortcoming with respect to not having a global feature to allow case-insensitive searching.
However, in my Rails 3.2 application when I run:
...
1
vote
3answers
44 views
+50
Is there a way to set set config.action_controller.asset_host in development
In my production.rb I set my asset_host to CloudFront like so:
config.action_controller.asset_host = 'http://xxxxxxxx.cloudfront.net'
Now I'm finding that in some circumstances (specifically, ...
0
votes
0answers
34 views
+50
Rails implementation of a database-based file system
Because "file system" and "rails" are such common topics both together and separate I fail to find any Ruby on Rails open source app that implements a file system in the database. I would like to use ...
0
votes
1answer
21 views
+50
Mailcatcher not working in staging server
I was pretty happy with mailtrap (http://mailtrap.io/) until i found out it got slow. Sometimes it doesn't event sent email or took long time.
So thought of alternative and moved to mailcatcher ...
0
votes
0answers
24 views
+50
Facebook API Publish feeds in Group
I am posting some feeds on my pages thru facebook API which are published normally.
but those posts are appears on my fans feeds, (may be irritate them if these are too much in numbers, you can ...
1
vote
3answers
85 views
+50
Parallelizing methods in Rails
My Rails web app has dozens of methods from making calls to an API and processing query result. These methods have the following structure:
def method_one
batch_query_API
process_data
end
...
1
vote
0answers
107 views
+50
Stack Level Too Deep Error In Rails
I'm getting this error in Rails and there's no other information to help me figure out why.
SystemStackError in UserController#students
stack level too deep
My user controller is as follows
class ...