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.
0
votes
2answers
39 views
why I can not accept white spaces on field for save in ruby on rails?
I am trying to save a form with rails, its a simple one, and everytime I try to send a name with a space (like john smith) I dont actually get an error, it returns succcess, but does not save ...
0
votes
3answers
14 views
Wrong Time.now output
There is such row in DB (from schema):
t.datetime "password_link_sent_at"
And callback:
self.password_link_sent_at = Time.now
But the output is wrong:
Started PUT "/email_password" for ...
0
votes
2answers
8 views
Cannot seem to install
I am trying to install all the dependencies for a rails app I have forked off of github. One of the gems I need is gem install mysql2 -v '0.3.11'. However, I get an error when trying to run this. I ...
0
votes
1answer
14 views
Etags in Controller
Every rails etag example I've seen has been very simple with the fresh_when method being called as the last line in the controller. I'm trying to understand how the fresh_when method works for a ...
1
vote
3answers
41 views
Is there a way to prevent having to specify associations in tests?
Given I have the following class
class listing > ActiveRecord::Base
attr_accessible :address
belongs_to :owner
validates :owner_id, presence: true
validates :address, presence: true
end
...
2
votes
4answers
674 views
Getting list of states/events from a model that AASM
I successfully integrated the most recent AASM gem into an application, using it for the creation of a wizard. In my case I have a model order
class Order < ActiveRecord::Base
belongs_to :user
...
0
votes
2answers
30 views
Rails Tutorial : 6.3.1 An encrypted password
I am going though the tutorial (which I must say is a excellent resource) and I don't quite understand the following:
In section 6.3.1 we create a password_digest column in the db via the ...
0
votes
0answers
12 views
Source Reflection Errors with has_many :through
I'm attempting to create a system where my site's users can favorites pages. Those pages have two types, either clubs or sports. So, I have four models, associated as such:
User Model:
class User ...
1
vote
0answers
5 views
Rails test database getting wrong column type on geographic columns
We have a rails app that uses postgis and activerecord-postgis-adapter for geographic information search. However, it doesn't work right in the test database. In development and production database, ...
0
votes
0answers
2 views
setData and setCategory highcharts from rails
I'm using highcharts 3.0.1 with ruby on rails.
basically i have finally this javascript ( in an ajax/remote request) :
var chart = $('#my_bar_div').highcharts();
...
0
votes
1answer
23 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
0answers
11 views
rails joins and merge method in heroku postgres
I am having an issue with joins and merge method when the app is deployed to heroku.
def self.get_gift_by_gender_age(c)
result = self.where(:gender => [c.gender, ...
1
vote
0answers
5 views
simple_form not displaying error
My first time posting here!
I have a form, with a lot fields and it's working great unless any validation error occurs...
If "validates_presence_of" is raised, a "ActiveRecord::RecordInvalid in ..." ...
3
votes
2answers
4k views
How to display the time in user's timezone
I am using rails 3.0.5 and I have created_at and updated_at stored in UTC. Now I want to display the created_at time in users' timezone. I believe it is possible to pick user's timezone from the ...
0
votes
0answers
32 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
2answers
960 views
Rspec redirect_to show action
I'm learning rails and have come across a problem with an Rspec. I have the following test for a controller:
describe PostsController, "creating a new post" do
it "should redirect and show the ...
0
votes
3answers
10 views
undefined method `Calendar' for 2:Fixnum
I am trying to put a calendar on my user page. I added route to routes.rb file. But I can not understand why it doesn't work.
route.rb
resources :users do
resources :calendars
end
The error ...
0
votes
0answers
7 views
connection error ActionMailer
I am developing a rails application using Rails 4 and Ruby 2.0.0.
I have a form in my contact page from where I want to send an email to the administrator. I've chosen to work with smtp and here is my ...
1
vote
1answer
1k views
Best way to add attributes to User Model in Ruby on Rails
my User Model looks like:
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.string :name
t.string :email
...
1
vote
1answer
135 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 ...
0
votes
0answers
7 views
gem rest_in_place and alias_attribute issue
I have a model that is connecting to a legacy database using active record. Because the column names are in all caps. I have created alias_attributes for them like so
alias_attribute(:marketing_code, ...
0
votes
1answer
7 views
image saved but missing using paperclip
I am using paperclip at attach images to offers in my rails application. The code works in development, but not in staging. In staging, the images are saving correctly to s3, but the image_file_name ...
0
votes
3answers
26 views
How to Handle Nil Errors in Rails?
What is the correct way to deal with nil errors in Rails? I often get errors like:
NoMethodError (undefined method `questions' for nil:NilClass):
For example, let's say I have chapters in my ...
2
votes
1answer
45 views
RSpec suite performance difference
I've got an interesting problem that's causing myself and my team a lot of headaches when it comes to running our spec suite.
Our spec suite is broken up into the following sub-folders, and next to ...
0
votes
0answers
50 views
+100
Why does using `-webkit-appearance: none` on a select option in OSX make the text disappear?
In order to get the styling I want on Chrome in OS X, I have to use the -webkit-appearance: none; attribute.
See this question and this answer.
The issue is, now when I select an answer, it doesn't ...
9
votes
9answers
902 views
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 ...
0
votes
1answer
25 views
Retrieve subset of many-to-many relationship in Rails/ActiveModel
As an example, I have Doctors with many Appointments with Patients. I want to retrieve all Patients who are currently active in an Appointment:
class Doctor < ActiveRecord::Base
attr_accessible ...
5
votes
3answers
3k views
How to cast an ActiveRecord object to another class when using STI?
I'm currently using ActiveRecord single table inheritance.
How can I cast one of my models from type A to B? They have the same parent.
3
votes
2answers
351 views
Getting rails-api and strong_parameters to work together
When including
gem 'strong_parameters'
gem 'rails-api'
together in my Gemfile, calling params.require like
private
def user_params
params.require(:user).permit(:first_name, :last_name)
end
...
0
votes
1answer
15 views
generate pdf if object is persisted
I'm using wicked_pdf gem to generate a pdf file:
I want to generate the pdf only if the object is persisted/saved in database:
Something like this:
def new
@invoice = Invoice.new
respond_to do ...
0
votes
1answer
4k views
Ruby On Rails 3 submit form AJAX update results in div
I am stuck; I did a search and I can't find a pointer on how to get this project to work. I have a form on my index.html.erb as:
<html> <head>
<title>Ajax List ...
6
votes
3answers
5k views
WebSockets and Heroku: pushing data to the user
I am build a real time web application using Ruby on Rails and Heroku seems to be the best option for hosting it.
I would prefer pushing new data to the user, when it becomes available, instead of ...
2
votes
2answers
764 views
Rails static html template files in the asset pipeline and caching in development mode
I'm building a website using AngularJS and Rails. The HTML files that I'm using for templates are stored under /app/assets/templates and each time I update a route or change something inside of a ...
0
votes
2answers
15 views
Ruby How to display message if include? statement is true or false
I'm very new to Ruby and am attempting to display one of two messages based on whether certain words are included in an array. My current controller contains the following:
@cookie = ["gluten", ...
1
vote
1answer
21 views
How do I reference a tiny_tds connection in ruby/sinatra via database.yml (or other)?
I'm trying to figure out how to pull data from a database without the need to place a connection string at the top of each ruby file.
I'm learning the basics of ruby via a little Sinatra app I'm ...
0
votes
1answer
18 views
rails jbuilder - just an array of strings
i have a controller that returns an array of ActiveRecord objects and a jbuilder view to generate the json (all standard stuff). works great if i want for example an array of hashes.
so for example i ...
4
votes
1answer
199 views
Rails console issues using JRuby: no prompt character, no tab completion, broken arrow keys, etc
I'm having various issues with my Rails console under JRuby, including
No prompt character
Tab completion not working (literal tab gets inserted)
Up/down arrows not browsing history (^[[A or ^[[B ...
1
vote
2answers
106 views
What method does Rails use to get the parameter name for an ActiveRecord resource?
I've dug up and down the ActiveRecord and FormHelper documentation and API, and I can't find how Rails goes from an AR class like class Namespace::MyResource < ActiveRecord::Base to the parameter ...
0
votes
1answer
29 views
Change Params with Rails after Checkbox is checked
I have a page that will display media that has already been uploaded to my website. There will be 3 check boxes, one for each type of media, the check boxes are Images, catalog_images, and videos. ...
0
votes
3answers
17 views
How to fix undefined method `split' for nil:NilClass error?
I have the following line in my Rails app:
@images = @product.secondary_images.split(",")
When @product.secondary_images has content in it, this runs fine. However, when there is no content, I get ...
0
votes
1answer
12 views
Changing an instant variable within dynamic dispatch method
I am using dynamic dispatch to define several class methods in a class that inherits from ActiveResource.
class Invoice < ActiveResource::Base
self.site = 'http://localhost:8080/'
def ...
0
votes
2answers
16 views
Rails controller respond_with json from two models
I want to respond_to :json in my locations_controller from both my location and beer models.
My locations controller looks like this
class LocationsController < ApplicationController
respond_to ...
0
votes
0answers
7 views
Rails Routes: Constraints and Scoped Routes, the alternative case?
This question derives from another SO question and I was wondering if its possible to specify the alternative case of the scoped routes? Also, see User-Centric Routing and lambda's for routing ...
0
votes
1answer
68 views
How to define a Tire property of type nested in a ActiveRecord mapping block?
I have a Rails application where a topic can be followed by various users. I want to be able to find a topic matching a name and followed by a specific user. Only using a Tire query statement, without ...
0
votes
2answers
25 views
How to test model's callback method independently?
I had a method in a model:
class Article < ActiveRecord::Base
def do_something
end
end
I also had a unit test for this method:
# spec/models/article_spec.rb
describe "#do_something" do
...
0
votes
1answer
19 views
AND multiple JOIN statements in Rails
I have a table for users and roles. I'm using a has many through relationship. I am trying to create a query that will find users that have all of the roles in an array.
ex.
role_ids = [2, 4, 6]
...
0
votes
1answer
17 views
rails require_tree and javascript is not working
My javascripts are not working when i have = require_tree . inside my application.js, if i delete it then my js.erb for a view some_view.js.erb is not working.
My application.js file:
/*
= require ...
0
votes
2answers
21 views
Rails STI: Forbidding parent class initialization
I have a rails model Book, with STI-inherited models Fiction and NonFiction
While book holds a lot of common logic, I'd like to forbid creation of the parent Book model. Just wondering about the most ...
0
votes
0answers
14 views
Generating additional routes, controller methods & view templates in rails and other long term time savers via console
The one way I know how to do this, at least 2/3 of these, is to run, for example:
rails g controller names dog
if I want to add a names#dog page/method/route. This generates the route and the ...
-1
votes
1answer
38 views
How can I change this from a local to instance variable?
I have this block of code:
if %w[ups fedex usps].include?(carrier.slug)
send(carrier.slug).track(number)
end
Which effectively replicates:
ups.track(number)
fedex.track(number)
...



