0
votes
2answers
35 views

How to update two parameters using Ajax in Ruby on Rails?

I am trying to update this helper function with Ajax: def radio_buttons_collection(types, invoice_type) types_html = types.map do |type| content_tag :span, :class => "radio_option" do ...
0
votes
0answers
14 views

How translate css content with rails 3

I have this css: .bs-docs-example::after { content: "Example"; } is it possible translate with rails 3 the word Example?
-1
votes
1answer
30 views

is it possible load a file.js.erb in <head></head>

I have a file.js.erb file in my views, but I need load this file in <head></head> layout. Is it possible load these files in <head></head> section? and if it's possible, How ...
1
vote
1answer
27 views

How can I use ruby-progressbar in a Rails View?

I want to use progressbar in my view before the view finishes loading. So I installed ruby-progressbar and tried to follow the instructions in the documentation on this website. It works when I use ...
0
votes
1answer
24 views

Displaying dynamic data using charts and graphs in ruby on rails

I want to display dynamic data via charts,graphs which is retrieved from database. There are various gems available like highcharts, google graphs, gruff library, etc. Can anyone please site an ...
1
vote
1answer
36 views

Rails 3.2.13: are performance issues now resolved?

I have looked at What causes the extreme slowness when changing from rails 3.2.12 to 3.2.13 and seen various performance issues that occurred after 3.2.13 was released. I have not found any ...
0
votes
0answers
14 views

Carrierwave remote url and choose file validation

If a user chooses a file (photo) and as well as type in a URL for the :remote_image_url I wanted to know how best to validate this scenario or handle this experience? I'm using fileupload js from ...
0
votes
1answer
25 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
23 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
1answer
25 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 ...
2
votes
2answers
109 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
5answers
55 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?
1
vote
2answers
28 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 ...
2
votes
2answers
36 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
43 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
2answers
74 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, ...
2
votes
2answers
39 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
29 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 ...
0
votes
1answer
17 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
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
1answer
23 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 ...
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
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? ...
0
votes
1answer
28 views

Does a before_filter in the application controller slow down the app?

I have a few before_filter in my application controller to check 1) If the current_user is banned, 2) If the current_user has received a new message and 3) If the current_user has any pending friend ...
0
votes
1answer
34 views

Ambiguous column name in Ruby on Rails with SQLite database?

I am getting this error in my Rails app: ActiveRecord::StatementInvalid in PaymentsController#index SQLite3::SQLException: ambiguous column name: date: SELECT COUNT(*) FROM "payments" INNER JOIN ...
0
votes
0answers
14 views

rails generate broken with NoMethodError

I am having some troubles with my Rails environment - running a command like: $ rails generate scaffold_controller model_name results in the following trace: ...
0
votes
1answer
26 views

Rails: Having issues redirecting after cropping image with Jcrop & paperclip

I am trying to implement Jcrop for Paperclip and I am 99% done. I am able to crop the image and store it. The issue is that after the image is cropped and stored it again takes me to the Crop action ...
0
votes
1answer
47 views

Search function is not working in ruby on rails

I am creating a form for my posts search. I am doing like this .... erb form code... <%= form_tag '/posts/search-post', :remote=> "true" do %> <p> <%= text_field_tag :search, ...
1
vote
2answers
47 views

How do you test a class with an extended module in ruby with spec

I can never find a clear answer for this use case, I apologize if this is a duplicate. In the following example, Is there a clean way to test with rspec that the method in class B gets called? module ...
0
votes
1answer
31 views

Get the number of objects meeting a criteria in a two-level deep relation

The following code is working and Customer#number_appointments_in_month correctly returns the number of appointments within a certain months. However, I feel like I am not using Rails capabilities. ...
2
votes
2answers
52 views

How to validate virtual attribute in Rails?

I have this class: class Project < ActiveRecord::Base validates :hourly_rate, :numericality => { :greater_than_or_equal_to => 0 }, :allow_blank => true ...
0
votes
1answer
12 views

Upgrading a rails 3.0 app to 3.2 including Compass and Blueprint

Tearing my hair out with this. Trying to upgrade an old app to rails 3.2 Have got most of the way there but I keep hitting an error when the app tries to import blueprint. Started GET ...
0
votes
2answers
37 views

Routing Error : uninitialized constant when split controller routes into namespaced route

I have routes like this below. Is it possible if I have routes like this ? #config/routes resources :subscribers, only: [:index, :show] namespace :admin do resources :subscribers, only: [:new, ...
1
vote
1answer
29 views

Rails inline mail attachments not working properly

I am using ActionMailer to send an inline image. The user_mailer.rb file looks like this: def welcome_mail(user, mail_content, subject) @user = user @mail_content = mail_content.html_safe ...
0
votes
2answers
38 views

How to search an integer field in ActiveRecord?

I want users to be able to search my database using this function: def self.search(query) new_query = (query.to_d * 100).to_i where("price_in_cents LIKE ?", new_query) end The problem is that ...
1
vote
3answers
57 views

Custom setter method won't accept blank values in Ruby on Rails?

I have this class: class Project < ActiveRecord::Base attr_accessible :hourly_rate validates :hourly_rate, :numericality => { :greater_than => 0 }, ...
0
votes
1answer
31 views

How to simplify my Rails money converter module?

Just out of curiosity: Is there a way to simplify a file like this: module Converter def hourly_rate hourly_rate_in_cents.to_d / 100 if hourly_rate_in_cents end def hourly_rate=(number) ...
0
votes
0answers
14 views

Aptana RadRails Error

I found this error when trying to start Aptana RadRails , my OS is Kali Linux # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x870bc636, pid=23503, ...
0
votes
1answer
17 views

rails forms base error messages

Reading from the rails guide it says to change the base error message you can append what your new base to the errors array. For some reason doing so result in two error messages rather one and does ...
0
votes
2answers
56 views

How to validate that payment can never cause invoice amount payable to be less than zero?

I have this class: class Payment < ActiveRecord::Base attr_accessible :amount, :invoice_id belongs_to :invoice validates :amount, :numericality => { :greater_than => 0, ...
2
votes
1answer
42 views

How to ensure record is not saved by two users at the same time?

I have this class: class Payment < ActiveRecord::Base attr_accessible :amount, :invoice_id belongs_to :invoice validates :amount, :numericality => { :greater_than => 0, ...
1
vote
2answers
24 views

Issue and clarification needed with attr_accessible

There is so much written about the security threat of attr_accessible that I am beginning to wonder if I should even have any attributes in it. Here is the issue. I have a Message model which has the ...
0
votes
4answers
89 views

Displaying charts in Ruby on Rails

I want to display charts (bar, line , pie-charts etc.) in my Ruby on Rails application. I tried using Gruff and Scruffy. But found it crude and not easy to use. Then i came around googlecharts ...
0
votes
1answer
16 views

List all validation rules for a certain model

I think I have duplication in validation of an attribute since I am getting the same validation error twice on email field. I suspect the some gems may enforce the same validations. Is there a way ...
0
votes
1answer
23 views

How can I click_link a specific row with Capybara

I'm trying to write all my Capybara code to not use any CSS or funny matchers. For acceptance test purposes, I'm using Capybara to navigate only by button and link text that is visible to the user. ...
0
votes
1answer
40 views

How do I add an empty attribute to stylesheet_link_tag “application”?

How do I add an empty attribute to <%= stylesheet_link_tag "application", :media => "all" %>? I want to add data-skrollr-stylesheet emty attribute to it, so the output html would be: <link ...
0
votes
1answer
34 views

Need to access helper variables

So, I have a helper called "Status Updates Helper" and one called "Meals Helper". I need to access the variables in Status Updates Helper from within Meals Helper... I've tried using "include ...
1
vote
1answer
35 views

Validating select form in Rails only if value is selected

I have a select form in Rails and currently I am using a list for the form in my view and Profile model: class Profile < ActiveRecord::Base validates :country, inclusion: { :in => CITYLIST ...
0
votes
2answers
42 views

problems rounding. I want to round the value with 2 digits

This is my loop in the house view show template: - @region.cities.each do |city| %li = link_to city.name, country_region_city_path(@country, @region, city) %li = ...

1 2 3 4 5 26