]> git.openstreetmap.org Git - rails.git/blobdiff - vendor/plugins/file_column/lib/rails_file_column.rb
Replace the file_column plugin with paperclip
[rails.git] / vendor / plugins / file_column / lib / rails_file_column.rb
diff --git a/vendor/plugins/file_column/lib/rails_file_column.rb b/vendor/plugins/file_column/lib/rails_file_column.rb
deleted file mode 100644 (file)
index af8c95a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-# require this file from your "config/environment.rb" (after rails has been loaded)
-# to integrate the file_column extension into rails.
-
-require 'file_column'
-require 'file_column_helper'
-
-
-module ActiveRecord # :nodoc:
-  class Base # :nodoc:
-    # make file_column method available in all active record decendants
-    include FileColumn
-  end
-end
-
-module ActionView # :nodoc:
-  class Base # :nodoc:
-    include FileColumnHelper
-  end
-end