From a45334d2b9ccca43fc420daf55fb3fe32719d78f Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 19 Nov 2013 09:43:32 +1100 Subject: [PATCH] no need "booting rails 4" message, just add booting rails 3 for now --- Gemfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 6b8e26601c..e01bd56a07 100644 --- a/Gemfile +++ b/Gemfile @@ -24,12 +24,14 @@ if rails4? # A bit messy, this can be called multiple times by bundler, avoid blowing the stack unless self.method_defined? :to_definition_unpatched alias_method :to_definition_unpatched, :to_definition - puts "Booting in Rails 4 mode" end def to_definition(bad_lockfile, unlock) to_definition_unpatched(Bundler::SharedHelpers.default_lockfile, unlock) end end +else + # Note to be deprecated, in place of a dual boot master + puts "Booting in Rails 3 mode" end gem 'seed-fu' , github: 'SamSaffron/seed-fu'