Browse Source

Use ruby-mode for Podfile

A Podfile is used for CocoaPods to do a Bundler like dependency
management in XCode projects. Similar to a Rakefile or a Gemfile the
Podfile contains a dependency description in a Ruby based DSL.
custom
Jan Ehrhardt 12 years ago
parent
commit
0a1e8e4057
  1. 1
      modules/prelude-ruby.el

1
modules/prelude-ruby.el

@ -48,6 +48,7 @@
(add-to-list 'auto-mode-alist '("Thorfile\\'" . ruby-mode))
(add-to-list 'auto-mode-alist '("Vagrantfile\\'" . ruby-mode))
(add-to-list 'auto-mode-alist '("\\.jbuilder\\'" . ruby-mode))
(add-to-list 'auto-mode-alist '("Podfile\\'" . ruby-mode))
;; We never want to edit Rubinius bytecode
(add-to-list 'completion-ignored-extensions ".rbc")

Loading…
Cancel
Save