0
votes
3answers
45 views

refactoring rails method

I was wondering, how could i refactor this code, because it doesn't looks good to read and understand def next_payment_price price = self.plan_price price = discounted_price if self.coupon ...
1
vote
1answer
36 views

ruby, rails, constants, resque

I have a bunch of classes that are resque jobs and I just noticed I have a constant defined in each named RECEIVER which contains the email distribution list for the jobs results. What is the ...
1
vote
2answers
51 views

Delegate or instantiate additional class?

Let's say I have an Account class and an AccountReport class. In accounts#show I want to show a report of an account. Both Account and AccountReport have a number of public methods. Which technique of ...
0
votes
2answers
36 views

How to refactor simple filter action in Rails?

I would like to filter my @jobs using two parameters. For now I have something like this: def filter if params[:filter][:trade].present? && params[:type].present? @jobs = ...
1
vote
3answers
91 views

Refactoring navbar with an active class in a partial

This is what I have and I want to include it in a partial so that I am not duplicating it in 4 places. The problem is the active class which should change based on the page the user is on. How can I ...
1
vote
1answer
65 views

Rails iteration variable inside variable in seed.rb

Within my seed.rb I'm populating 4 columns with text data from one title-1.txt file. title = File.read(File.join(Rails.root, '/features/support/titles/title-1.txt')) 1.upto(4) do |i| ...
-1
votes
2answers
70 views

Simple: Need help refactoring this awkward looking method [closed]

How do I clean this up? It reads awkward and is way too long. def report_total(feed_event, advisor) count = 0 advisor.activity_feed_events.each do |lead| if lead == SignupFeedEvent ...
0
votes
0answers
72 views

How to refactoring when metaprogramming has side effects?

I am using Ruby on Rails 3.2.9 and Ruby 1.9.3-p125. After my previous question I ended up that I have an issue on metaprogramming a self-implemented acts_as_customizable plugin since the related code ...
1
vote
4answers
51 views

How to refactor this controller action which builds an active record search hash

This code doesnt feel right. I'm trying to make my controllers skinny and I feel like there is way too much logic in the controller action. What would be a much better way of organising this code? ...
1
vote
1answer
70 views

DRY way to write many custom validators in rails

In my applications, there are multiple custom validators that I keep in app/validators and then call in multiple models. Mostly I do this for regex based validations, things like email, mobiles, etc ...
0
votes
1answer
35 views

How to refactor that complex singelton model method for create nested models in Rails?

I have following complex method which I cut off from controller: def self.create_with_company_and_employer(job_params) company_attributes = job_params.delete(:company_attributes) ...
1
vote
2answers
74 views

Better/cleaner way of writing this if clause

The following is a code from my UsersController action. I have a current_user object from a session, and I'd like to use the current user's ID if none is passed into the action. def show id = ...
4
votes
3answers
123 views

How to refactor complex method in Rails model with Rspec?

I have the following complex method. I'm trying to find and implement possible improvements. Right now I moved last if statement to Access class. def add_access(access) if ...
0
votes
1answer
59 views

Rails Refactoring: Custom Method & Heavy View

My code current works just fine, but I can tell that it could be done better. So I figured I would ask for some input. For a given expense, the user can submit, or un-submit. This creates a record ...
1
vote
2answers
151 views

Ruby Conditional If Else Assignment

So I have the following code that I wanted to make a little more readable: user = User.find_by_username(username) user = User.new(credentials) if user.nil? Essentially the first line is the ...
0
votes
2answers
69 views

How to refactor complicated logic in create_unique method?

I would like to simplify this complicated logic for creating unique Track object. def self.create_unique(p) f = Track.find :first, :conditions => ['user_id = ? AND target_id = ? AND target_type ...
0
votes
2answers
64 views

How can I refactor that after_create callback?

This is my after_create callback: after_create { |f| if f.target.class.eql?(Question) if f.target.user != User.current_user Notify.create_notify( Notify::QUESTION_FOLLOW, ...
0
votes
2answers
56 views

Probelm refactoring a view (and inherited variables)

I have this code view that is very hard to read and needs some refactoring: <div class="tab-content"> <% @posts.each_with_index do |post,pi| %> <div class="tab-pane fade ...
1
vote
1answer
196 views

How to use dynamic attributes / columns in Squeel statements?

In my previous issue I ended up that the following code seems to work as expected: def my_squeel_query table_name = ...
1
vote
3answers
130 views

How to dynamically generate association names?

I am using Ruby on Rails 3.2.2 and the Squeel gem. I have following statements and I am trying to refactoring the my_squeel_query method in a Mixin module (since it is used by many of my models): # ...
2
votes
2answers
168 views

How to refactor “shared” methods?

I am using Ruby on Rails 3.2.2 and I would like to "extract" some methods from my models / classes. That is, in more than one class / model I have some methods (note: methods are related to user ...
0
votes
1answer
120 views

refactoring from controller to model

I have this action in my Order Controller: # POST /orders # POST /orders.json def create @order = Order.new(params[:order]) #spostare il ciclo cart > line_items come metodo del modello Order ...
0
votes
3answers
75 views

How to refactor this Rails code?

Consider this helper method: module SomeHelper def display_button Foo.find_by_id params[:id] and Foo.find(params[:id]).organizer.name != current_name and ...
2
votes
1answer
78 views

How to DRY up controller code which involves views code as well?

In my Rails 3 app, I have a number of models with a boolean field disabled. In controllers for these models, I use a custom action disable to toggle the disabled field using Ajax. Example (For ...
1
vote
1answer
69 views

Refactoring from nested ifs to link_to_if

I had the following if statement in a shared view: <% if activity.holder.user.profile_type == "Manager" %> DAMANAGER <% elsif profile == "managers" %> <%= link_to ...
1
vote
1answer
198 views

Rails Creating multiple records with one field different

In my Contract form, I allow the user to select a Unit from a dropdown box, OR select multiple Units from a group of check boxes. The dropdown field is named unit_id and the multiple checkboxes are ...
0
votes
3answers
125 views

Refactor this if else between block of Ruby/Rails code

Here's the code. Basically, the user selects a billing day (the 1st of each month, or the 15th of each month). The start_date is when the "contract" begins, the expire_date is when it expires. So, if ...
1
vote
3answers
62 views

How to write increase day helper in Rails?

I have following helper which should puts day in words depends on number: def day_in_words(number) case number when 0 "Sunday" when 1 "Monday" when 2 "Tuesday" ...
0
votes
1answer
90 views

Ruby on Rails - Refactoring ActiveRecord queries from the view to the model

I am aware of the advice "fat models / skinny controllers" and "never put logic in the view"; however, it would help me to learn from an example. In the following, what is the best way to rewrite the ...
5
votes
2answers
187 views

How to DRY scope methods used in two different classes?

I am using Ruby on Rails 3.2.2 and I would like to retrieve / scope associated objects by "specifying" / "filtering on" an attribute value on those associated objects. That is, at this time I am using ...
2
votes
2answers
207 views

Rails code refactoring tool for Mac

I am looking for a refactoring tool for rails application in Mac. After researching for whole week I am kind of surprised that there is no good tool available to refactor ...
0
votes
2answers
62 views

Rails 3 refactoring ActiveRecord query

I have the following query which looks up an organisation belonging to the current signed in user and then finds any events belonging to that organisation. def update @organisation = ...
0
votes
0answers
97 views

Remove the duplicated form code by refactoring with Rails

Finished in 15.53 seconds ←[31m86 examples, 4 failures←[0m Failed examples: ←[31mrspec ./spec/requests/user_pages_spec.rb:95←[0m ←[36m# User pages signup wi th valid information should create a ...
1
vote
3answers
67 views

figuring out/refactoring this if/else for a voting system

I'm having difficulty conceptualizing how to do this in the best way possible without having an enormous if/else structure. I know i could do it that way but I'm trying to abstract it into methods and ...
1
vote
1answer
191 views

Refactoring - Chapter 11, Exercise 3 Rails Tutorial 2nd Edition

Anyone else working through Chapter 11 Exercises for Michael Hartl's Rails Tutorial 2nd Edition? Chapter 11, Exercise 3 asks: Refactor Listing 11.31 by adding partials for the code common to the ...
0
votes
1answer
75 views

How do I join and display first_name with last_name?

I am using devise and cancan with rails 3.2.1 and I'm having an unusual problem that I know can be refactored and simplified, but after much searching, I'm stuck. I have first_name and last_name ...
1
vote
0answers
117 views

Refactoring RSpec code

I am using Ruby on Rails 3.2.2 and rspec-rails-2.8.1. I am testing a view file and I would like to refactoring the following code but I don't know how to make that. module UserExampleHelpers def ...
2
votes
3answers
56 views

Layout refactoring

I can't help but thing there is a better way of coding the below in a Rails layout. Any suggestions? <% if remove_ads_from_page? %> <div class="main-content without-ads"> <%= ...
0
votes
1answer
65 views

Refactor this block of routes?

I have to manually redirect a set of URLs, but seems like there's got to be a more efficient way (in terms of # of lines) than what I've currently go. match "/articles/care" => ...
1
vote
3answers
76 views

Am I using the rails form properly?

I feel like I have no idea what I'm doing.. I have a vague Idea. I'm hoping I did this all right so far. Any way you can see to refactor this would be greatly appreciated. One thing I noticed it ...
1
vote
1answer
73 views

Want to DRY this code but have trouble

I have two methods that do similar things. I am a noob and want to know how I might be able to make these combine into one method: #test if the current selected language is the one that was clicked ...
2
votes
1answer
138 views

refactor “render format” in multiple controllers

so i've got a view method in multiple controllers which mostly looks exactly the same: def show show! do |format| format.json do if @text.activated? @text.log ...
0
votes
1answer
79 views

Refactoring: How can I contain long names in a code area of 120 spaces?

I am using Ruby on Rails 3.1.0 and I am refactoring/reordering my source code so to make that more readable. I am using a code area with a "right margin" of 120 spaces (that is, I have 120 characters ...
1
vote
2answers
126 views

How to DRY (these) RSpec tests using custom matcher

I currently have the following tests, which look like good candidates for a little DRY treatment: describe League do context 'attributes validation' do before(:each) do @league = ...
0
votes
1answer
182 views

Refactor ruby on rails model

Given the following code, How would you refactor this so that the method search_word has access to issueid? I would say that changing the function search_word so it accepts 3 arguments or making ...
0
votes
1answer
72 views

Refactoring rails3 view activerecord call

In the below snippet, I'm doing a lot of database manipulation in the view. (The .where, and two each loops). What is the best way to refactor this code out of the view? In the view: index.html.erb ...
3
votes
1answer
922 views

How to refactor helper methods in RSpec files?

I am using Ruby on Rails 3.1.0 and the rspec-rails 2gem. I would like to refactor the following code (I have intentionally omitted some code and I have given meaningful names in order to highlight the ...
0
votes
1answer
65 views

Should I turn this into a module?

In my Rails 3.1 app. Ive got a few controller's calling this block of code: twitter_entertainment_users = Rails.cache.fetch('twitter_entertainment_users', :expires_in => 24.hours) do begin ...
0
votes
2answers
338 views

Refactoring of many if statements for params[…], inside controller action

I have such code, for making chain selects in my form View for index action: <%= form_tag do %> <%= collection_select(*@brands_select_params) %> <%= ...
1
vote
1answer
133 views

Rails - Problems refactoring controller's nested attribute creation

I have models: Transaction has_many :credits, :debits Credit belongs_to :transaction Debit belongs_to :transaction Each credit must have a balancing debit and vice versa. I currently ...

1 2