Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timfjord/carrierwave-serializable
Carrierwave plugin that store uploader to serialized field
https://github.com/timfjord/carrierwave-serializable
Last synced: 2 months ago
JSON representation
Carrierwave plugin that store uploader to serialized field
- Host: GitHub
- URL: https://github.com/timfjord/carrierwave-serializable
- Owner: timfjord
- License: mit
- Created: 2013-02-18T08:57:38.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2022-05-10T14:41:42.000Z (over 2 years ago)
- Last Synced: 2024-04-25T02:41:39.003Z (8 months ago)
- Language: Ruby
- Size: 21.5 KB
- Stars: 27
- Watchers: 4
- Forks: 20
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://stand-with-ukraine.pp.ua)
# Carrierwave::Serializable ![Build Status](https://github.com/timfjord/carrierwave-serializable/actions/workflows/test.yml/badge.svg)
Carrierwave plugin that allow mount uploader to serialized field
## Installation
Add this line to your application's Gemfile:
gem 'carrierwave-serializable'
Or install it yourself as:
$ gem install carrierwave-serializable
## Usage
To mount an uploader to the serialized field, set the `serialize_to` option
to the serialized field where you want to store the uploader.```ruby
class User < ActiveRecord::Base
serialize :documents, Hash
mount_uploader :document1, DocumentUploader, serialize_to: :documents
end
```## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request