turboladen / tailor

A RubyGem that allows for checking standard styling of Ruby files.
146 stars 18 forks source link

Allow no spaces around '=' when used to set a param's default value #96

Open turboladen opened 12 years ago

turboladen commented 12 years ago

Some styles like to use no space around = when setting a parameter's default value:

def my_method(options={})
  ...
end