Search Results

1
vote

Automatic code quality tool for Ruby?

Another nice tool, although in early stages according to the author is reek: http://reek.rubyforge.org/ reek currently includ …
3
votes

Gettings started with Ruby on Rails 2.0 for Windows

Also you may want to look into NetBeans, it has great support for ruby and rails. They also provide several focused tutorials and even viedos. …
1
vote

ruby on rails state machines

Maybe this is an overshoot, but there's a rails integrable bpm (workflow) engine called openwferu: http://openwferu.rubyforge.org/ …
0
votes

How do you handle Rail’s flash with Ajax requests?

The only improvement I can think of is making the page.reload_flash default (not having to put it on every rjs file, and make it expicit if you don't want to reload the flash, something like page.k …
0
votes

Any thoughts on RightScale and Scalr for dynamic Ec2 instance managment

Some people say that automatic scaling won't solve the problem …
9
votes

To use self. or not.. in Rails

A quick explanation of what that means: In ruby, you can define methods on a particular object: a = "hello" def a.informal "hi" end a.informal => "hi" …
4
votes

What is the best way to determine which source files are no longer needed?

As with any refactoring, start by writing tests, once you have those, you can either delete one file at the time and undo if the tests fail or use …
1
vote

Rails: FasterCSV - Unique Occurences

If your data is not masive you can use the Set class. Here's an example: …
-1
votes

Overriding id on create in ActiveRecord

I don't know if that would be posible, but I can think of two motivations, one is that you want to create the new model to be asociated with an existing one, in that case, you can use the other mod …
1
vote

Dependency graph for Rails partials

Should be relatively simple to do reading all views and partials and creating a directed graph on the fly, the only thing you need to be carefull about is loops. …
1
vote

Calling a method on initial state with AASM

How about using the initialize method?, it's not as self-documenting but should work. …
8
votes

Is it necessary to unit test ActiveRecord validations?

Validations per se should be trustable, but you may want to check if the validation is present. Put in other words, a good way to test something is as if it were a black box, abstracting th …
3
votes

Using print instead of sprintf with %s and % and multiple string substitution arguments

I don't actually understand what you want to do, but: irb(main):001:0> x = "x %s" => "x %s" irb(main):002:0> y = "y %s" => "y %s" irb(main):003:0> z = "z" => "z" …
0
votes

What is a good method to bypass authentication and/or authorization in development mode?

On development add a script to the environment that mocks the real authentication framework, or redefine the basic functionality (such as an #is_logged_in method) to always return ture, that way yo …
0
votes

Need alternative to filters/observers for Ruby on Rails project

When saving your Hit model, update a redundant column in your Page model that stores a running total of hits, this costs you 2 extra queries, so maybe each hit takes twice as long to process, but y …