- Mailing list for questions
- Issues and bugs
- Wiki
- IRC channel (on Freenode): #monologue.
- This is an extension that adds the image upload feature to monologue using imagemagick
gem 'monologue_image_upload', :git => "https://github.com/msevestre/monologue_image_upload.git"
And run bundle install
to fetch the gem and update your 'Gemfile.lock'.
Run these commands:
- $
bundle exec rake monologue_image_upload:install:migrations
- $
bundle exec rake db:create
(only if this is a new project) - $
bundle exec rake db:migrate
This is all done in an initializer file, say config/initializers/monologue.rb
.
Monologue.config do |config|
config.image_upload.max_picture_size = 2.megabytes
config.image_upload.upload_path = "monologue"
end
- Rails 4 +
- Database: MySQL & Postgres are supported but other databases might work too.
- Michael Sevestre, @msevestre
Fork it, then pull request. Please add tests for your feature or bug fix.