diff options
| author | Bozhidar Batsov | 2014-12-09 19:05:13 +0200 |
|---|---|---|
| committer | Bozhidar Batsov | 2014-12-09 19:05:13 +0200 |
| commit | fda355b5bd8330762cb7894fc038492c6c9720a1 (patch) | |
| tree | 5a368bc29ac4f30815284daef29bec967b547ed0 /lisp/progmodes/ruby-mode.el | |
| parent | baab20d73e2a3ee6a06dc83fe97d0b781870e29f (diff) | |
| download | emacs-fda355b5bd8330762cb7894fc038492c6c9720a1.tar.gz emacs-fda355b5bd8330762cb7894fc038492c6c9720a1.zip | |
Associate more files with ruby-mode
* progmodes/ruby-mode.el (auto-mode-alist): Add .rabl, Berksfile
and Puppetfile.
Diffstat (limited to 'lisp/progmodes/ruby-mode.el')
| -rw-r--r-- | lisp/progmodes/ruby-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 2f23e338f81..803bf579da3 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el | |||
| @@ -2206,9 +2206,10 @@ See `font-lock-syntax-table'.") | |||
| 2206 | (add-to-list 'auto-mode-alist | 2206 | (add-to-list 'auto-mode-alist |
| 2207 | (cons (purecopy (concat "\\(?:\\." | 2207 | (cons (purecopy (concat "\\(?:\\." |
| 2208 | "rb\\|ru\\|rake\\|thor" | 2208 | "rb\\|ru\\|rake\\|thor" |
| 2209 | "\\|jbuilder\\|gemspec\\|podspec" | 2209 | "\\|jbuilder\\|rabl\\|gemspec\\|podspec" |
| 2210 | "\\|/" | 2210 | "\\|/" |
| 2211 | "\\(?:Gem\\|Rake\\|Cap\\|Thor" | 2211 | "\\(?:Gem\\|Rake\\|Cap\\|Thor" |
| 2212 | "\\|Puppet\\|Berks" | ||
| 2212 | "\\|Vagrant\\|Guard\\|Pod\\)file" | 2213 | "\\|Vagrant\\|Guard\\|Pod\\)file" |
| 2213 | "\\)\\'")) 'ruby-mode)) | 2214 | "\\)\\'")) 'ruby-mode)) |
| 2214 | 2215 | ||