0
votes
5answers
66 views

How do I shorten a one line if statement in ruby that only executes if field is not empty

I have the following if statement that fills a field with the result of a function, if the function doesn't return empty. I think i've seen examples before where the empty check and the function can ...
1
vote
3answers
46 views

Best Optimal way to produce HTML in Ruby on Rails views

I have recently started learning Ruby on rails and going through various tutorials. Previously, I did code in PHP. One of the practices I found in the tutorials is as below. I wanted to know, if this ...
-2
votes
1answer
35 views

Concise way to find max/min with potentially nil value [closed]

I have two arrays, max_of_row (which stores the maximum value in each row) and min_of_col (which stores the minimum value in each col). I initialize these as max_of_row = [] and min_of_col = []. ...
0
votes
3answers
50 views

What is the cleanest way to calculate instance variables in initialize?

Say I have a class that defines a collection of my days and how wacky they are. Is it better to initialize my @scores variable in the initialize function like so: class WackyDayScorer attr_reader ...
2
votes
1answer
38 views

Should Conditional Chain Success be Implicit or Explicit

Which is the better practice? To make the logic for your successful case implicit or explicit in a conditional chain? Please note that the logic is exhaustive in all of the following, so it is really ...
3
votes
3answers
59 views

Testing if an object is a string

I have a function that manipulates a string; however, sometimes my input isn't already a string. For example it could be a path object. I need to convert it to a string because I want to call methods ...
4
votes
4answers
67 views

How to write a complicated condition

Condition constructions are easy to write when you have a simple condition and a possibly complicated body: if simple_condition_expressed_in_one_liner complicated_body_that_may_be_long ...
2
votes
4answers
66 views

Ruby: Combine two similar methods into one?

I have two extremely similar methods in my Ruby object for a Rails app. I know they can be combined, I just don't know how. (Extra points if you can find a more beautiful way to handle possible nils ...
1
vote
2answers
64 views

Correct way of writing parentheses in Ruby methods?

What is the "acceptable" or "correct" way to write parentheses in Ruby methods? Like: puts doc.instance_of?( self.class.superclass.class ) or: puts doc.instance_of? ( self.class.superclass.class ...
2
votes
1answer
42 views

How do I construct an object in ruby Array Map?

class TestClass attr_accessor :name, :id end values = ["test1", "test2"] mapped_values = values.map{|value| test_class = TestClass.new test_class.name = value test_class.id = #some random ...
0
votes
4answers
74 views

Improve readability of large attr_accessor

What should I do when defining constants or attr_accessor symbols that are very large? For example, something like this: ATTRIBUTES = %w(id name full_name owner private html_url description fork url ...
2
votes
3answers
110 views

How to integrate rubocop with Rake?

rubocop is a code style checker for Ruby. A similar tool to rubocop, Cane, can be integrated with Rake. I prefer rubocop to Cane since rubocop makes checks based on the Ruby Style Guide and it seems ...
2
votes
1answer
77 views

The correct design: Including module in ActiveRecord or helper method

I have a Sinatra application using ActiveRecord and I wish to add a feature where I can generate a fingerprint (SHA1) for a set of records. The way I've implemented this is by defining a module and ...
-3
votes
3answers
154 views

A general guideline approach to solving programming exercises? [closed]

Ok so there are a million questions on how to solve this and how to solve that problem, but I can't find a good resource on SO on how to actually go about solving programming problems in general. Like ...
2
votes
3answers
75 views

Performance implications of string#gsub chains?

Are there any performance implications of a chain of .gsub and/or .sub methods on a string in Ruby? For example, here's an example of a method from the Rails source that creates an alt tag for ...
-1
votes
6answers
74 views

Why is it “array.include? object” and not “object.in? array”? [closed]

I recently discovered that in Python, you can do this: array = [1, 2, 3, 4] if 3 in array: print("Yep!") Then, I thought to myself: "Mh, why is it different in Ruby? if 3 in array is more ...
0
votes
2answers
77 views

There is a convention for the use of the sentence “:foo => 'bar'” or “foo: 'bar' ” in Ruby 1.9? [closed]

Is there a convention for the use of => or : in Ruby 1.9+? like: :param => "foo" or param: "foo" EDIT: Thanks for the feedback, I edited the question to make it more clear.
7
votes
2answers
167 views

Why are else statements discouraged in Ruby?

I was looking for a Ruby code quality tool the other day, and I came across the pelusa gem, which looks interesting. One of the things it checks for is the number of else statements used in a given ...
4
votes
1answer
105 views

Better way to write large SQLs inside rails models?

After using a lot of Arel that Rails provides for sugar code, I am having problems when dealing with large and complex SQLs queries that I couldn't do it very well with Arel methods. I like Arel for ...
6
votes
4answers
457 views

Ruby: How to signal “not implemented yet”?

In the initial drafting of a new gem I need to leave some method implementations empty ( to be implemented in the next ) Therefore, I would like to signal a "not implemented yet" exception I'm ...
6
votes
4answers
112 views

In Ruby, what's the difference between String() and #to_s

String(1.1) == (1.1).to_s => true String(1.1) === (1.1).to_s => true Is there a difference between these two coercion methods? If so, can you demonstrate?
5
votes
8answers
535 views

How to write down this three cases in more elegant way?

I want this logic to be written in more elegant and compact way, and it seems to me that I'm missing something: if value < min_rate min_rate elsif value > max_rate max_rate else value ...
0
votes
1answer
111 views

For deep namespaces in ruby, how best to manage coding style and scope operator annoyances? [closed]

I find myself fighting deep namespaces (>= depth of 4), even when they logically make sense so to avoid some annoyances they cause. To start, I like my code to fit nicely in the text editor window ...
1
vote
1answer
35 views

The `#=>` convention for expected returns

It is a Ruby convention to use #=> for describing expected returns. I realized that I use # => (with some space or tabs) myself. This is just a convention, and there is no formal specification, ...
6
votes
1answer
302 views

Ruby convention for chaining calls over multiple lines

What are the conventions for this? I use the folowing style, but not sure it is the preferred one since if I miss a dot at the end I can run into a lot of issue without realising that. query = ...
8
votes
5answers
283 views

Is there a convention for memoization in a method call?

I want to avoid reevaluation of a value in method call. Untill now, I was doing this: def some_method @some_method ||= begin # lot's of code end end But it ends up quite ugly. In some code, ...
0
votes
3answers
89 views

How to refactor this Ruby code?

I created the following, that works, but it seems very cryptic. Is there a way to write it in a more Ruby-esque or understandable way? This method removes the lower factors below a number. So, ...
0
votes
1answer
215 views

Are extension methods not “the Ruby way”?

When working in C#, I found it very convenient to create extension methods. In Ruby, one might look like: class Fixnum is_divisible? divisor self % divisor == 0 end end But I don't see ...
-2
votes
6answers
106 views

Is iteration slower than linear code? Which one is preferable?

I have a question in my mind from last many days, that while writing a code in ruby, is the linear code is faster and preferable than an iteration? Let me have an example. There is a block of code ...
-2
votes
0answers
49 views

Is iteration slower than linear code? [duplicate]

Possible Duplicate: Is iteration slower than linear code? Which one is preferable? I have a question in my mind from last many days, that while writing a code in ruby, is the linear code is ...
2
votes
2answers
639 views

How to break up long lines of Ruby

I always get great big lines of code at the top of my Rails models. I am looking for suggestions for the best way to break them up with standard Ruby style. For example, one line I am looking at now ...
2
votes
2answers
113 views

Ruby 1.9.3-p140 - Using Thread - how to wait for all results to come out from threads?

I'm trying to figure out a good way to wait for all threads to be executed before the main thread finishes. How can I do that in the following code? threads = [] counter = 1000 lines = ...
4
votes
2answers
84 views

What is the proper way to use methods that return an enumerator in Ruby array?

Many methods in Ruby array return an enumerator when invoked without parameters or blocks (index, keep_if, each, drop_while and many more). When is it appropriate to use methods in this form, as ...
0
votes
2answers
52 views

Should the return value of “save” always be checked when using ActiveRecord?

In general, should the return value of save always be checked when using ActiveRecord? For example, I've come across some code like this: def foo(active_record_instance) ...
3
votes
2answers
69 views

What am I actually doing when calling Enumerable#reduce?

Why can't I call Enumerable#reduce(sym) without parentheses like the following? >> [1, 2, 3].reduce :+ ?> While using parentheses results in this: >> [1, 2, 3].reduce(:+) => 6 ...
2
votes
1answer
306 views

Clean association definitions with Ruby Sequel

I am using Jeremy Evan's Sequel to populate an (SQLite) database with data I scrape from web pages. The database involves a number of many_to_many relationships that I express with Associations. The ...
0
votes
1answer
71 views

Match and delete some header strings on ruby

I want to parse file and delete some header strings on ruby. File(s) to be parsed looks like this. --- some text text2 string and so on --- another string and the other And I want to remove --- ...
0
votes
3answers
86 views

How can I write better code for passing key-value arguments?

I want to write code for Ruby in a more Ruby-like style and ran into a problem when working with argument passing. I have to see if ABC is nil or not. If ABC is nil, I would pass another symbol into ...
0
votes
2answers
148 views

Preferred way to write true AND false conditional in Ruby

I apologize if this question is answered somewhere but I'm not positive I'm phrasing it right for Google, and I haven't seen it in any style guides. Since Ruby has multiple ways to show negativity in ...
1
vote
3answers
230 views

is it bad form to use instance vars directly in ruby?

Should you always create accesssors (for reading and/or writing) in ruby? If you have a class that's not meant to be reused outside, can't I just use instance variables directly? One of the problems ...
0
votes
0answers
91 views

When to use a new variable vs string interpolation?

I wrote a script that I decided to refactor so I could add functionality to it as my coworkers think of it. I only saved four lines in the effort, but the main change is I removed both methods and ...
1
vote
2answers
78 views

Better ruby syntax

I'm fairly new to ruby and its rubyisms, I have a code similar to this one : def my_method objects temp = [] objects.each do |o| temp << { :text => o.text, :title => ...
0
votes
1answer
149 views

When invoking methods in Rails apps, what is the convention use parenthesis or not?

What do the vast majority of Rails shops do? Since Ruby allows for either I'm sure there is a set standard I should probably fixate on making a habit since I'm just starting out with Rails. According ...
7
votes
3answers
2k views

Coding style checker or code formatter for Ruby / Rails

When I use C# or Perl, there are some useful tools like StyleCop, FxCop, Perl::Critic and Perltidy. They can check or format my code automatically. Then, are there any equivalent tools for Ruby or ...
2
votes
3answers
336 views

Recommended indentation style for Ruby `if` blocks that assign a value to a variable? [closed]

Which of these is better Ruby code formatting style, and why? Option A: def load_business @business ||= if params[:badge_uuid] # some code else # some other code end end Option B: ...
4
votes
3answers
113 views

What is the preferred way (better style) to define a method in one line in Ruby?

What is the better style: def method; some code end or def method() some code end and why?
2
votes
2answers
123 views

Ruby instance variable syntax convention

What's the Ruby convention for referring to instance variables inside an instance method? Consider the following variations: def MyClass attr_accessor :q def initialize(z) @q = z ...
0
votes
2answers
201 views

Refactoring view logic in Rails

Here's what I need to do. I have a Tournament model, which is connected to User via Signup (N:N). The only thing that Signup adds is status of the signup. Tournament has a start time, and users can ...
0
votes
2answers
121 views

Cleanest way to do something like “Sentences.each.each” in Ruby

Let's say I have an array of sentences: a = ["I love pie", "I love you more and more each day", "every day is a good day"] I want to test each word in the sentence. Because ruby is so awesome I ...
1
vote
3answers
303 views

What is the “Ruby way” to align variable assignments? (code style question)

Say i have this untainted code: some_var = Hash.new some_var[:name] = "blah" some_var[:address] = "101 blahblah lane" another = "Olly olly oxen free!" What is the ruby way of making it pretty? ...

1 2