Tagged Questions
2
votes
1answer
82 views
What is this code doing and how can I write it more simply?
[:initial_amount, :rate_increase_amount].each do |method|
define_method method do
self["#{method}_in_cents".to_sym].to_f/100 if self["#{method}_in_cents".to_sym]
end
define_method ...
0
votes
1answer
29 views
coffeescript jQuery - how to refactor this (noob) approach?
after starting to learn some coding I did this (very ugly, non DRY) star rating switch with bootstrap in a rails4 app. I already did the codeschoool coffeescript tutorial, but it seems ruby is a ...
0
votes
1answer
33 views
How do I remove validation duplication from a model?
Short of extracting shipping and billing addresses into an Address model, how can I remove this validation duplication?
I only want to validate the billing address if it's not the same as the ...
0
votes
1answer
20 views
Refactor case/when using strings
I have a number of these in my controller:
def ups
@ups ||= Shipper::Ups.new(
ENV['UPS_ACCESS_KEY'],
ENV['UPS_PASSWORD'],
ENV['UPS_USERNAME'],
ENV['UPS_ACCOUNT']
)
end
And then ...
0
votes
2answers
54 views
How do I refactor this object to lessen dependency on callbacks?
I have an Order object that belongs_to a BillingAddress and a ShippingAddress. I want to present my user with only ShippingAddress fields and a checked checkbox indicating that the billing address ...
0
votes
2answers
47 views
How to streamline if else for inheriting defaults in Rails
This code works, but I feel like there is a cleaner way to do this without all of the repetition:
def check_out_time
...
1
vote
1answer
42 views
Need help refactoring and speeding up if statement for view
I have the following Ruby on Rails code in my helper. My views are slow loading when I have many links on the page.
Can anyone show me a refactored version that would be DRY and speed it up?
...
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 ...
0
votes
1answer
33 views
Refactor association out of view from a loop
Just getting started in rails and trying to refactor down a bit of my view, and I'm a bit stumped as to where to go for the answer since I'm inside an each loop I need access to the |item|.
I'm ...
0
votes
2answers
45 views
Ruby on Rails: Possible/preferrable to implement single table inheritance after creating separate models?
I've built a simple address book application in my intro Ruby on Rails class with separate models for street addresses (Address), email addresses (Email), and web addresses (Web) using nested forms ...
1
vote
1answer
78 views
Refactoring Fat ActiveRecord Model, What Now?
I've been using CodeClimate to improve my code base and I have a model class that is falling down on 'definition outside of methods' and 'total overall complexity' for those that don't use CodeClimate ...
3
votes
2answers
52 views
Is it bad practice to have very large controllers in Rails (and other MVC frameworks)?
I'm a student and have been learning rails on my own time. So far, I'm able to develop simple applications that only perform standard database operations. Currently, I'm attempting to increase my ...
6
votes
1answer
113 views
How does the `new` keyword work in this Ruby method definition?
Railscasts put out a great episode on refactoring. One method is to move complex controller logic into service objects instead of pushing it down the model. In one service object, the following code ...
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 ...
0
votes
2answers
72 views
Logic of interaction among models in Ruby on Rails?
I'm studying Rails and am now trying to organize interaction among models. What I've written works, but I think that the code smells bad.
For example, I have two models with database tables Parcel ...
0
votes
1answer
91 views
Effectively Renaming a Rails Project [closed]
What is the most effective, secure and easiest way to rename a Ruby on Rails 3 project?
1
vote
2answers
74 views
Big code refactoring : create a new project or refactor package per package [closed]
We are a little team working on a Rails 2.3 project. A short description: this project has currently
460 000 lines of Ruby, CSS, JS and YML (including some plugins and libraries)
350 ActiveRecord ...
0
votes
0answers
51 views
How to refactor link_to_function using unobustrive JS in helper?
I am using link_to_function in one of my ApplicationHelper method:
def link_to_add_fields(name, f, association)
new_object = f.object.class.reflect_on_association(association).klass.new
fields = ...
0
votes
3answers
44 views
How would you refactor this
'def show
@dept = Dept.find(params[:id])
@members = @dept.members_list.collect{|a|a.name}
dif = @dept.users.collect{|a|[a.name,a.id]}
@admin_list = @dept.admin_users.collect{|a|a.user}
...
0
votes
1answer
60 views
Best way to include javascript in Rails via content_for
I have some pages in my Rails application that need one off bits of javascript to be included, ideally just before the </body> tag. There is no real need to have this javascript included on ...
1
vote
1answer
85 views
Rspec NameError, how can I refactor this code and use routing helpers correctly?
I'm trying to get the following to work:
#spec/features/senseis_spec.rb
require 'spec_helper'
describe "Senseis" do
subject { page }
@paths = [senseis_path, new_sensei_path, edit_sensei_path(1), ...
0
votes
2answers
27 views
How to properly return one or two merged content_tags?
How to get rid of that duplicaiton in if conditional?
def set_caption(result)
if result.respond_to?(:app_name)
content_tag(:div, result.type_name, class: 'type-name') +
content_tag(:div, ...
0
votes
4answers
149 views
How to sort the items in an array to match the order that it appears in another array
I want to grab the ratings from movies in the database and return an array of unique ratings, sorted in the following order:
G PG PG-13 R NC-17
A plain Array#sort wasn't enough:
["PG-13", "PG", ...
0
votes
1answer
27 views
undefined method for nil:NilClass refactoring?
in transactions, sometimes customers do not have service_id because they did not add additional services to cart. problem is, transactions index page returns undefined method 'name' for nil:NilClass ...
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 = ...
0
votes
2answers
142 views
Refactoring Rails Controller / Views to call Javascript / jQuery
I'm trying to refactor some legacy code at the moment. It currently goes something like this:
Controller
def create
# do stuff
respond_to do |format|
format.html { do stuff }
format.js ...
1
vote
2answers
76 views
Rails moving controller logic into model
I'm in the process of refactoring for my rails application. I've read many posts about moving controller logic to models, but I encountered some problems when I tried.
I need help to
Understand the ...
0
votes
3answers
88 views
How can I refactor these common controller methods?
I have a few controller methods that are extremely similar and I was wondering what the best way to refactor them would be. First thing that comes to mind would be somehow passing in two blocks to a ...
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 ...
0
votes
4answers
289 views
How to refactor nested case statements (in this case)?
I am using Ruby on Rails 3.2.9 and Ruby 1.9.3. I have following case statements:
case
when private?
case
when not_active? then [:a, :b, :c, :d]
when active? then raise "private cannot be ...
0
votes
3answers
140 views
How to refactor model classes implementing similar methods?
I am using Ruby on Rails 3.2.9 and Ruby 1.9.3. I have many model classes implementing similar methods as-like the following:
class ClassName_1 < ActiveRecord::Base
def great_method
...
0
votes
0answers
73 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 ...
2
votes
1answer
89 views
How can I refactor a Rails Controller action to eliminate clutter?
I have an action called update_mobile and in it I am preparing a massive amount of instance variables that I use in a RABL JSON request. You can see that if the request contains the ...
1
vote
1answer
30 views
How to allow a person to register for an 'event', and creates a 'user' at same time in Rails
I've created a simple Rails application where users can register to attend events. To create a pleasing user experience, an unidentified user can browse the events and then if they see one they'd ...
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 = ...
0
votes
1answer
81 views
Rspec mocking for testing queries of an associated record
I have the following model:
class Kueue < ActiveRecord::Base
attr_accessible :name, :user_id
belongs_to :user
has_and_belongs_to_many :photos
scope :empty, ...
3
votes
1answer
115 views
How to refactor complex search logic in a Rails model
My search method is smelly and bloated, and I need some help refactoring it. I'm new to Ruby, and I haven't figured out how to leverage it effectively, which leads to bloated methods like this:
# ...
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 ...
0
votes
2answers
198 views
Rails, refactoring controller [closed]
Can you help me for refactor and DRY that? I have no ideas. Thanks.
if request.xhr?
render :json => {
:status => true,
:location => root_url + "/projects",
:message => ...
0
votes
1answer
64 views
Refactoring controller actions
For example:
class Post < ActiveRecord::Base
belongs_to :article
end
class Article < ActiveRecord::Base
has_many :posts
end
I need change status in article, when I delete last post or ...
0
votes
1answer
49 views
Restructure bulky class
I have an ActiveRecord model Reservation.
It got to the point that the class is to large and does too much.
I would like to split it into a few different ones and place those under the Reservation ...
0
votes
1answer
125 views
Rails 3.2 Simplify Controller with Model Methods on has_many :through
Most questions I've seen with skinnying up controllers deals with a simple model relationships. My question is if you're updating a many to many form with multiple parameters and their associated ...
1
vote
1answer
101 views
Refactor: Generating a unique slug for a Model
I'm currently generating url slugs dynamically for my models (and implementing to_param/self.from_param to interpret them). My slug generation code feels verbose, and could use a refactor.
How would ...
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, ...
1
vote
2answers
134 views
Show/Hide persistence when editing form where radio button is used to show/hide forms element
This code is working but there must be a better way to do this in the Jquery script.
Here's my radio button
<%= f.radio_button :losstype, "Cash", :id => 'lc' %>Cash
<%= f.radio_button ...
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 ...

