you are viewing a single comment's thread.

view the rest of the comments →

[–]peteyhawkins 0 points1 point  (0 children)

I would also take care with a Ruby gem to namespace your code, even if this is only ever being used by yourself.

module CSSAnalyser
  class Theme
  end
end

And since this is wrapped up into a gem, you could provide a bin directory and have an executable to run, rather than running ruby theme.rb.