From 6f6a79d89a8f3f71518361b569982ee4b0477de9 Mon Sep 17 00:00:00 2001 From: Mike Sager Date: Wed, 29 Feb 2012 02:47:40 -0800 Subject: [PATCH] Fixed bug on app start: no such file to load -- flowplayer/engine (LoadError) --- lib/flowplayer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/flowplayer.rb b/lib/flowplayer.rb index 7c6c7a5..4db3591 100644 --- a/lib/flowplayer.rb +++ b/lib/flowplayer.rb @@ -2,7 +2,7 @@ require 'flowplayer/player' if defined?(Rails) if Rails::VERSION::MAJOR == 3 && Rails::VERSION::MINOR >= 1 - require 'flowplayer/engine' + require 'flowplayer/railties/engine' end require 'flowplayer/railtie' -end \ No newline at end of file +end