Live data from Hacker News

Rails reserved names

news.ycombinator.com

1–2 of 2 posts

Rails reserved names

#1
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 big Rails apps using?

Re: Rails reserved names

#2
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 
And then always refer to it with the module prefix, ie Foo::File.