Settings

Theme

Rails reserved names

1 points by ream88 12 years ago · 1 comment · 1 min read


It bothers me a lot each time I'm creating a Rails model which holds a reference to a file, because Rails does not allow the word "File". Any alternative solutions, what are the <i>big</i> Rails apps using?

yxhuvud 12 years ago

File is the Ruby representation of the file class. It is a Very Bad Idea to reuse that name as is.

Reusing names defined in Ruby stdlib classes is a bad idea. Name the model after what the file is used for, eg LockFile.

Another option if you absolutely have to use that name, wrap it in a module, eg

    module Foo
      class File < ActiveRecord::Base
      end
    end
And then always refer to it with the module prefix, ie Foo::File.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection