Ruby on Rails version 3.2.0 released at January 20, 2012. Use this tag for issues related to development in Ruby on Rails version 3.2.0.
0
votes
0answers
9 views
Architcture suggestion for calling Services from Rails and JavaScript
So in this scenario:
I open /pharmacy in the browser so I have written a PharmacyController#index that gets hit. Inside that I make a call to a REST service that returns me the JSON of the data that ...
-1
votes
1answer
24 views
How to submit a form with ajax if two parameters are set
I have a simple rails form and want to submit the form when the two parameters are set without the click of a submit button. How can i write a simple jquery ajax request to do this.
my form below is ...
0
votes
1answer
18 views
Twitter Integration using Ruby on Rails
I have a Ruby on Rails application (Ruby-1.9, Rails-3.2)which integrates with twitter to display the latest tweets containing a particular "keyword" dynamically. But it throws an error as NameError ...
0
votes
0answers
12 views
Buttons (toggle buttons?) instead of radio buttons in an ActiveRecord form using bootstrap?
I want to have a selector for "priority" on my form that looks like this:
But can't figure out how to link it up to activerecord. This is the straight-HTML for the "toggle buttons":
<div ...
0
votes
0answers
3 views
Rails 3.2 Nginx Unicorn Basic Authentification
I am trying to get Basic Authentification to work with Rails 3.2 nginx and Unicorn
The configuration works for hosting my site. I used the Rails Basic Authentification in the Controller but i have to ...
0
votes
1answer
19 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 ...
2
votes
0answers
12 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
3answers
21 views
Why is ActiveRecord destroy_all taking so long?
I have a simple rails app with articles and comments running on MySQL 5.5, Ruby 1.9.3 and rails 3.2.12:
class Article < ActiveRecord::Base ...
0
votes
1answer
18 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
0answers
7 views
In DataMapper, when using STI, what causes the error: undefined method 'key' for Object:Class
I'm getting a very strange error with DM 1.2 and a model that is sub-classed using single-table inheritance (STI):
undefined method `key' for Object:Class
That happens when I do a first query on ...
0
votes
0answers
7 views
Declarative authorization not working on polymorphic association
I've one message model which has a polymorphic association with two other model.I want to use the nested_in attribute of filter_resource_access for both my models.How can I achieve this?If anyone has ...
0
votes
2answers
19 views
Passing JSON data from Controller to JavaScript
There is a service that when I hit it it return me JSON like this, so I think it is returning me the correct JSON I need:
Now in my client contoller I have something simple as this to call the ...
1
vote
2answers
98 views
undefined method `protect_against_forgery?' for #<#<Class:0x0
I have the following code in my routes.rb file .
resources :users do
member do
get :following,:followers
end
collection do
put :activate_email
end
end
And I have a user email ...
0
votes
1answer
36 views
Rails: Not sure how to find random records
I was looking at this post for my solution but it is not helping: Stack Overflow
I am not sure if it would be applicable for my situation. Here is the query that I have in index page.
...
0
votes
5answers
48 views
How to add confirm message with link_to Ruby on rails
I wanted to add confirmation message on link_to function with Ruby.
= link_to 'Reset message', :action=>'reset' ,:confirm=>'Are you sure?'
Any ideas why it's not working?
0
votes
0answers
12 views
how to convert json to ruby array?
i am using gem "audited-activerecord", "~> 3.0" for tracking the crud information in a audited table. i have a column audited_changes in the audit table which stores all the information relating to ...
2
votes
2answers
29 views
jQuery .on() not working with jquery-ujs
So I have a rails app that renders views via jquery-ujs. (data-remote in the URLs, then a load of js.erb files with things like:
$('#whatever').html('<%= j render("form") %>');
In my main JS ...
1
vote
2answers
20 views
Rails query WHERE clause using OR
i have 2 individual RAILS queries that both work fine on their own:
@charts = Chart.where(:patient_id => @emailpatient.id)
@charts = Chart.where(:patient_id => @sharepatient.id)
that i want ...
0
votes
1answer
19 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
4 views
simplify googtrans parameter and how to call google translation from my Javascript Function
In order to create a link that automatically translates my Website Translator-enabled page without prompting my users, I am using the parameter #!googtrans(en|TARGET_LANG_CODE) or ...
0
votes
0answers
15 views
How I can implement Fancybox in Ruby on Rails
In my viwe/contact/show.html.erb I have this:
<%= render partial: "shared/contacts-partial" %>
In this partial I have this:
<section id="fancy-contact">
<p ...
2
votes
2answers
35 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
0answers
16 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
1answer
32 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 requests (current page and next page) in my server log.
Here is a piece of my ...
0
votes
0answers
16 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
0answers
7 views
CSS for sidebar in rails app not working on production
I have the following CSS for my sidebar menu in my rails app.
.sidebar-nav-fixed {
position: fixed;
top: 60px;
width: 21.97%;
}
In development, it is working exactly as I would like it ...
0
votes
0answers
3 views
Separating the Service Call from the JavaScript function
Currently I have a javascript file that calls into my service that returns the JSON I need for drawing some charts and does that all in this javascript function. Something like this:
function ...
0
votes
1answer
29 views
How do I fix a botched migration that didn't remove a column?
I made a migration to remove a column from my first app ever about a week ago:
class RemoveHalfOrFullFromFurlough < ActiveRecord::Migration
def up
remove_column :furloughs, :half_or_full
...
0
votes
1answer
25 views
Postgres.app upgrade, now Rails app won't start
I just upgraded my Postgres.app to latest version (9.2.4.1) am now unable to start my Rails app using Foreman or Rails server.
/Users/memoht/Sites/myapp/.gem/ruby/1.9.3/gems/pg-0.15.1/lib/pg.rb:4:in ...
0
votes
0answers
7 views
RSolr::Error::InvalidRubyResponse - 200 OK
I am getting following error even after starting forreman and starting sunspot:solr :
RSolr::Error::InvalidRubyResponse - 200 OK
Error: java.lang.NullPointerException
at ...
0
votes
2answers
66 views
How to update radio options through Ajax in Ruby on Rails?
I am trying to update a list of radio options depending on the person that a user selects in a form.
_fields.html.erb:
<%= f.label :person %>
<%= f.select(:person_id, ...
0
votes
0answers
7 views
Uninitialized constant error when connecting to a service
I have a service that is running on 'http://localhost:4567/order_summary' so when I go to that address it shows me the JSON representation of it which is what I want.
Now in another Rail application ...
0
votes
1answer
22 views
CKEditor gem not running in production: Uncaught TypeError: Object #<Object> has no method 'apply'
I have no clue on what's happening here.
I'm using the gem 'ckeditor' in my gemfile and just followed the guide to have //= require in application.js
Everything works smoothly in development, but ...
2
votes
2answers
37 views
How do I get the contents of temp file through a form
index.html.erb
= form_for :file_upload, :html => {:multipart => true} do |f|
= f.label :uploaded_file, 'Upload your file.'
= f.file_field :uploaded_file
= f.submit "Load new ...
1
vote
1answer
23 views
Disqus Ajax is not taking diffrent thread for diffrent posts in ruby on rails
I have one rails application where I am using Disqus Universal Code for comment function. I am using ajax remote=>true function to display my posts content. Here is my disqus code
<div ...
1
vote
1answer
16 views
first_or_create by email and then save the nested model
I two models User and Submission as follows:
class User < ActiveRecord::Base
# Associations
has_many :submissions
accepts_nested_attributes_for :submissions
# Setup accessible (or ...
0
votes
1answer
43 views
prevent sql injection in rails
I am using the following query to find nearest locations google maps. Is it immune to the Sql injection. If not can anyone help me to get rid of it.
AlphaCourses.find_by_sql("SELECT *,( 6371 * acos( ...
0
votes
0answers
4 views
Fabrication gem with associations undefined method error
I have started using the Fabrication gem with RSpec and on the whole have had great success. However, I don't seem to be able to get the association fabrication to work.
I am using Ruby 1.9.3, Rails ...
1
vote
1answer
14 views
Self hosted @font-face kits from Fonts.com don't load correctly in Rails
I followed the demo.html and copied over all the fonts correctly and ensured that they're being added and compiled in the asset pipeline just like the rest of my fonts. However the .eot, .woff, .svg, ...
0
votes
1answer
16 views
yield is not working in partials other than application.html.erb
Here I have a requirement to use yield in a partial other than application.html.erb , when I try this in partial it was showing me the blank value and if I try the yield in application.html.erb it was ...
1
vote
1answer
7 views
RefineryCMS + Error 'Index was created prior to version 0.6.8. Please delete it, it will be rebuilt automatically.'
In my refinery project, I am getting this error message .
Index was created prior to version 0.6.8. Please delete it, it will be
rebuilt automatically.
While creating and editing the pages, I ...
1
vote
3answers
59 views
“.save” only inserts null values in database
I'm trying to make a RoR application for a Hospital so it has patients, doctors, offices, etc.
The problem I'm having is that, at the patient "Sign-up", I'm not able to save the new patient in the ...
1
vote
2answers
28 views
How to short the Controller actions in Rails
def index
@customers = current_user.customers
respond_to do |format|
format.html # index.html.erb
format.json { render json: @customers }
end
end
def show
@customer = ...
0
votes
1answer
21 views
How Should I use percent values in my database for a Rails app?
I am very new to Ruby on Rails, and I was looking for a way to include decimals in my database. For example, if I wanted to take a total score and and multiply it by a certain rate to get a new ...
0
votes
0answers
11 views
Paperclip and nested attributes - not writing to the database
I'm trying to upload multiple files on a form. I followed the rail casts for paperclip and nested attributes, and also this tutorial ...
0
votes
1answer
20 views
undefined local variable or method on link_to in rails
Thats the link_to
<%= link_to('Dashboard', dashboard_index) do %>
<i class="icon-play"></i>
<% end %>
Thats the corresponding rake routes entry.
dashboard_index GET ...
2
votes
2answers
24 views
render ActiveRecord response in from Controller to View
I'm new to Rails. I'm using Rails 3.2.13. I'll try to keep my question succinct:
In my controller, I want to get the last 10 entries from the Observation table. I have:
def index
@times = ...
0
votes
1answer
26 views
How to simplify this Rails helper function?
I made this helper function in my application_helper.rb file:
def link_to_related(path)
link_to "Show", path
end
So I can use it in my forms like this:
<%= ...
0
votes
2answers
18 views
Passing parameter valued to number_field
The view code for passing a parameter to a number field
<%= f.number_field :cap, :value => params[:cap] %>
is not returning the parameter, as the HTML code attests
<input class=" ...
0
votes
1answer
38 views
How to find related records in Ruby on Rails?
I have this class:
class Invoice < ActiveRecord::Base
has_many :payments
def payable?
amount_payable != 0
end
end
How can I get the total of all payments whose invoice is payable?
...







