Three options:
1: Switch syntax manually (not preferred, but easy; no explanation required)
2: Add "Gemfile" to the list of Ruby-syntax files
3: Use the plugin you link to and create a package for it
2: Add "Gemfile" to list of Ruby-syntax files
- Linux:
~/.config/sublime-text-2/Packages/Ruby/Ruby.tmLanguage
- OS X:
~/Library/Application Support/Sublime Text 2/Packages/Ruby/Ruby.tmLanguage
- Windows:
%APPDATA%/Sublime Text 2/Packages/Ruby/Ruby.tmLanguage
It'll be obvious once you're in the file. It's an <array> element with Ruby-looking filenames. Add <string>Gemfile</string> and you're all set.
It's possible the setting could get overwritten on an upgrade; I'm not sure how that works with ST2--it may be cleaner to do it through code as in the snippet.
3: Using the snippet you linked to
More work (and the correction of one syntax error). You can either do it manually, by creating a directory in Packages (see above for location) or create an actual package and allow ST2 to install it.
I created a test package called "Syntax" and copied the snippet into it, restarted ST2, and opening a Gemfile worked as expected. The correction required an additional colon (new gist), nutshell:
elif name[-3] == "erb": # Needed a semi-colon here.
set_sintax(view, "HTML (Rails)", "Rails")