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.

learn more… | top users | synonyms (2) | ruby on rails jobs

-1
votes
0answers
8 views

Model and Controller's naming rule for irregular noun in Rails

How should I name a controller if belonging model name is irregular noun? For example, if a model name is "Child" then what name should I use? "Children" or "Childs"?
0
votes
0answers
5 views

How to display previous value on Min Miles text field

I want to display a previous value on Min Miles and that should not be editable. I want like Default value of Min Miles is 0. When I click on Add More Range then In the new form - Min Value ...
0
votes
0answers
10 views

How to to mass email (500,000) using rails

How or what should I use in rails to mass mail to 500,000 emails? Also how can I format the email so it goes from different IP and from address. I know AWS is an option (and we would like to use it), ...
0
votes
0answers
4 views

Securing Paypal _cart with ssl

So I'm working on an online shopping web page and am currently trying to secure with SSL the cart submit button into Paypal. That is, I'm using a button following the 143rd railscast (link here), ...
0
votes
0answers
10 views

Fontawesome is not displaying properly in firefox and chrome

Font awesome is not displaying properly in Firefox and chrome in local-host . I'm getting like Chinese symbol.. why it so I have followed Rails: Using Font Awesome @font-face rails 3.2
0
votes
0answers
9 views

Bundler::Git error on app startup (passenger 4, nginx flavor, and jruby 1.7.3 for the app under rvm)

There are many similar questions, but they are rather dated. The error is familiar, but updated now for passenger 4.0.0.2 and jruby 1.7.3. The web application cannot be started, and in the stack ...
0
votes
1answer
19 views

How to query multiple columns against a single array of ids

I have the following model: Message.rb: sender_id, receiver_id, created_at I would like to find all messages where the sender_id and receiver_id are both within an array of ids ...
0
votes
1answer
22 views

Rails - how to get the records by their rank

I have a City model that holds names of cities and their respective populations. How would I write a method to show cities by a range of ranks? For example, I'd like to be able to pass in two numbers ...
0
votes
2answers
20 views

Rendering different partials depending on user window size

I would like to test if the user's browser window.width is >= 800px if so i would like to render partial A otherwise if window.width >= 800px. I have little experience, please explain my options on ...
1
vote
1answer
22 views

Exporting CSV data from Rails

I'm working to export csv data from rails. I'm following the tutorial here: http://railscasts.com/episodes/362-exporting-csv-and-excel?view=asciicast In my controller I have: def show # ...
0
votes
2answers
17 views

rails 4 specify gems for development, testing and production

I deployed the app on heroku as testing and amazon as production. On the testing and development(local), I used postgresql and on Amazon EC2 I used Mysql. So I want the pg gem only loaded on testing ...
0
votes
3answers
23 views

rails render format- why two formats

This is the code generated by scaffolding def index @swimming_classschedules = Swimming::Classschedule.all respond_to do |format| format.html # index.html.erb format.json { ...
0
votes
0answers
18 views

How do I disable keep alive with HTTPClient?

I am using HTTPClient. Is there a way to disable keep-alive/persistent connections when making a request? Is this even possible if the server that serves the web pages has keep-alive on? If it's not ...
0
votes
1answer
14 views

Archiving Data in Different Application

How can I make an archive system of my app with separate app and database? app1 to app 2 (archive system, the same app different database) it is like passing the database to give more space to the ...
0
votes
1answer
13 views

Access to a user's model during registration in Devise

I have some custom attributes in a User's model and I want to fill them out while an user registers them-self. class RegistrationsController < Devise::RegistrationsController def new super ...
0
votes
1answer
16 views

Using a form and a button to call a method in view

beginner rails question here. I created a web scraper to populate my model with information and I wanted to call this method with a button from a view. More importantly, I wanted to pass the contents ...
0
votes
2answers
15 views

Rails integration tests. Testing for actual pages

When using automated tests to test that my custom routes work, all I do is this: test "that /logout route opens the logout page" do get '/logout' assert_response :success end or test ...
0
votes
0answers
20 views

Serving Sizes for Food (database design) in Rails

I am having a difficult time trying to properly create a database design for Serving Sizes for food. What I have done is created a food model which contains calories, fat, carbs, etc... attributes. I ...
0
votes
1answer
14 views

Query has_many through association Rails

I have a has_many though association like this: User.rb has_many :memberships, :dependent => :destroy has_many :groups, :through => :memberships Group.rb has_many :users, :through => ...
0
votes
0answers
17 views

Ruby on Rails Tutorial by Michael Hartl Chapter 7.1.3 - Failing Test

I've spent a couple hours trying to figure out this tiny little piece of the puzzle before moving on in the tutorial so it doesn't blow up on my later. Because of that, I know issues where tests are ...
0
votes
0answers
5 views

memcached session store breaks when hydrating namespaced objects

A rails app I am working on is using memcached & dalli for the session store. We've got a bunch of active models that are nested within modules for namespacing... something like: module A ...
0
votes
0answers
5 views

ERROR — : reaped #<Process::Status: pid 4335 exit 1> worker=0

I am trying since 2 days to deploy on my vps (Ubuntu 12.04 Server (64 bits)) using : ruby (1.9.3-rc1), rails, capistrano, nginx and unicorn. I also follow railscast tutorial from Ryan Bates showing ...
0
votes
1answer
15 views

Rails custom routes, the point of the as: symbol?

In this example, what would be the point of the as: :logout parameter? get 'logout', to: 'devise/registrations#destroy', as: :logout In my views, I can call this route by specifying logout_path. Is ...
0
votes
1answer
11 views

Rails Paloma Gem - how to load page-specific javascript?

I loaded the Paloma gem to attempt page-specific javascript. It looks very straightforward but I must be missing something. rails g paloma:setup application.js: ... //= require jquery //= ...
0
votes
3answers
17 views

How to exclude a collection of records with ActiveRecord?

I have the following: = select :client, :id, User.all.map {|u| [u.username, u.id]}, include_blank: "Add a client by username" I'd like to exclude all records from User.all that match ...
1
vote
1answer
17 views

How to raise a custom Exception in Rails 3+ with normal control flow?

Given the following controller method: def create @client = User.find(params[:client][:id]) respond_to do |format| if @client.present? && @client.add_manager(current_user) ...
0
votes
1answer
14 views

Add undefined fields in MongoDB

I have created Mongo model like described here: http://docs.mongodb.org/ecosystem/tutorial/model-data-for-ruby-on-rails/ But it's like creating schema. I need to add fields, that I initially don't ...
0
votes
1answer
22 views

Give a 404 instead of a 500 error for missing templates

I have a Rails 3.0 app (working on a 3.2 upgrade) and whenever someone requests a template that doesn't exist it gives a 500 error in production. For instance mysite.com/blog_posts/532 sends the post ...
0
votes
1answer
13 views

How to match rails route based on URL ending with an ID?

It seems really easy to match routes using the '/' as a separator, but I'd like to match using a hyphen. Only problem is that there could be hyphens in the dynamic text that I want to appear before ...
0
votes
1answer
11 views

Rails 3.2 ActionMailer not rendering html in production

I have a production machine that is your basic CentOS machine on Amazon AWS, nothing special there. I am essentially running this: @digest = WeeklyDigest.most_recent.first @mailer = ...
2
votes
2answers
28 views

How to create several class and instance methods in Rails model

I am doing this def self.a ... end def a class.a end But for several method I would have to replicate instance methods. I was thinking in a module module A def a; end end And then use it ...
0
votes
1answer
16 views

Showing index to current user, only their information

I have a model Order. In the index, I want the current_user to see the index with only their orders. Order belongs_to :admin_user. AdminUser has_many :orders. I am using activeadmin in my app, if that ...
0
votes
3answers
28 views

Feed of all posts from all users

I am trying to Implement a feed of all post from a multi user blog. I want to know where to define this method and how to define it to be as "RESTFUL" as possible. I am thinking of putting it in the ...
0
votes
1answer
15 views

TIme.now and Created_At different formats?

Ive noticed that in a model the created_at attribute when rendering a model to json has the format like: 2013-05-20T22:12:31Z and calling Time.now and rendering to json gives a format like: ...
0
votes
0answers
16 views

WEBrick rails server (Psych::SyntaxError) | lynda.com tutorial

I'm a total newbie with RoR, so please forgive my density on this topic. I'm trying to start the WEBrick application server using the rails server command, but I get the following error when I run it ...
-3
votes
0answers
37 views

What is a good app to build for practice? [ruby on rails] [closed]

To provide some background: I've completed Michael Hartl's rails tutorial twice, as well as Agile Development with rails, and have done several Ruby exercises, in addition to reading The Well Grounded ...
0
votes
0answers
18 views

Thinking-Sphinx & Rails - Content not indexed anymore

I have a Rails application that indexes classifeds ads. I'm using thinking-sphinx. Yesterday, I realized that my ads are not getting indexed anymore. I'm a beginner in Rails so I don't know exactly ...
0
votes
1answer
20 views

Android HTTP post request being interpreted as a GET request on the ruby server

I'm sending JSON as a POST to a ruby app on Heroku server (from Android app). As the post title says, the Heroku logs output: Started GET "/app_session" for 62.40.34.220 at 2013-05-20 22:12:22 +0000 ...
0
votes
0answers
11 views

Handle a folder like paperclip “system” folder, symlinked in shared

I have a folder of uploaded assets (through paperclip) by a gem, which are stored in a different folder ckeditor_assets. I would like to handle this folder with capistrano in the exact same way the ...
0
votes
0answers
18 views

Double request on “next url”

rails 3.2.13 ruby 1.9.3 Hi, I'm adding next and prev urls for the best SEO results. But I realized that I have 2 page request (current page and next page) in my server log. Here is a piece of my ...
0
votes
1answer
23 views

Ruby on Rails, belongs_to does not work

I have the following relationships: class GroupsNorm < ActiveRecord::Base attr_accessible :group_name, :file_names has_many :platformas end class Platforma < ActiveRecord::Base ...
0
votes
0answers
11 views

nginx cant connect to rails app

nginx error log says failed\ (2: No such file or directory) and a 404 on the browser, i am getting welcome to nginx on the main www.app.com site. tried about everything. config file user ...
0
votes
2answers
19 views

Rails scope for ApplicationController methods

When I call a method which lives inside ApplicationController from an inheriting controller like UsersController < ApplicationController, what will be the scope of that method? ...
0
votes
0answers
14 views

Getting time difference between a service call

I have written something like this to see the time it takes for a service to return me the data I need: In my Controller#index : start_time = Time.now NowCallMyServiceFunction() @query_time = ...
0
votes
1answer
24 views

Heroku confirmation token - Devise error (even with Sendgrid)

I am using Heroku, Devise & Sendgrid. These are my settings in environment/production.rb: config.action_mailer.default_url_options = { :host => 'myapp.herokuapp.com' } # ActionMailer ...
4
votes
1answer
50 views

What is the point of Fibers in Ruby?

I don't understand how the below: counts = Hash.new(0) File.foreach("testfile") do |line| line.scan(/\w+/) do |word| word = word.downcase counts[word] += 1 end end ...
0
votes
1answer
23 views

Changing a field in the users table after_create of a record satisfies a condition

I want to change a users workout_id in the Users table once he completes his workout. I can't figure out how to do this. Below are the two ways I've tried to figure this out. Attempt 1: Put an if ...
0
votes
1answer
26 views

Existing Heroku app and Github

I have an existing Rails app at heroku. I have a github account. I'd like to use the Github Mac app to view/commit changes and push back up to Heroku. Can this be done? Or can the Github Mac ...
0
votes
2answers
16 views

How to fix an error with undefined error with cancan and devise in rails?

I am trying to create permissions in my Rails app with Devise and Cancan. ability.rb: class Ability include CanCan::Ability def initialize(user) if user.role == 'admin' ...
0
votes
2answers
22 views

mysql.h is missing … (Ruby on Rails, OSX)

I tried several ideas ... none of them worked ... I'm just trying to install mysql2 as a gem. My mysql is working, but every time my system says, that mysql.h is missing ... Has someone an idea? It's ...

1 2 3 4 5 2315