Closed rolandoam closed 15 years ago
remove all the class methods that create a new instance that are not "new". This is not very ruby-style and should be changed to a new creator with options, for instance:
Sprite.sprite_with_file("file.png")
should be:
Sprite.new(:file => "file.png")
or just
Sprite.new("file.png")
Changed:
remove all the class methods that create a new instance that are not "new". This is not very ruby-style and should be changed to a new creator with options, for instance:
should be:
or just