Saphira

Saphira is a file manager written for RoR using dragonfly. It's created for the great Railsyard CMS, but it's using the mountable engines introduced in rails 3.1, so it would be useable without RY as well.

Currently this project is under development and not finished at all but in order to have it under version control, it's already available on github.

Features

  • Create folders
  • Upload files
  • Tag files
  • Automatically read EXIF data from images

To-Do

  • Image manipulation
    • A form helper for image cropping
    • Multiple named image versions
  • WebDav access
  • Search files

Requirements

  • Rails 3.1.x
  • dragonfly: A Ruby Rack-based gem for on-the-fly processing - suitable for image uploading in Rails, Sinatra and much more!
  • awesome_nested_set: An awesome replacement for acts_as_nested_set and better_nested_set.
  • exifr: EXIF Reader
  • friendly_id: It allows you to create pretty URL’s and work with human-friendly strings as if they were numeric ids for ActiveRecord models.
  • acts-as-taggable-on: A tagging plugin for Rails applications that allows for custom tagging along dynamic contexts.
  • And some more gems in development mode

Installation

Add the gem to your gemfile: gem 'saphira', '~> 0.1.0.beta2' and add mount Saphira::Engine => "/saphira", :as => 'saphira' to your routes.rb file to mount the engine. The file manager should be available at http://localhost:3000/saphira then.