From 0a1e8e4057a55ac2d17cc0cd073cc93eb7214ce8 Mon Sep 17 00:00:00 2001
From: Jan Ehrhardt <jan.ehrhardt@gmail.com>
Date: Fri, 10 Jan 2014 15:40:22 +0100
Subject: [PATCH] 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.
---
 modules/prelude-ruby.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/prelude-ruby.el b/modules/prelude-ruby.el
index 59cb841..e5792fb 100644
--- a/modules/prelude-ruby.el
+++ b/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")