Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Main features:
- data is saved using a binary field (or blob);
- RSpec tests.

Useful also with platforms like Heroku (due to their ephemeral file system).

## Installation
- Setup Active Storage in your Rails application
- Add this line to your Gemfile: `gem 'active_storage_db'`
Expand Down
4 changes: 2 additions & 2 deletions active_storage_db.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
spec.name = 'active_storage_db'
spec.version = ActiveStorageDB::VERSION
spec.authors = ['Mattia Roccoberton']
spec.email = ['mattiaroccoberton@nebulab.it']
spec.homepage = 'https://blocknot.es'
spec.email = ['mat@blocknot.es']
spec.homepage = 'https://github.com/blocknotes/active_storage_db'
spec.summary = 'ActiveStorage DB Service'
spec.description = 'An ActiveStorage service plugin to store files in database.'
spec.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion lib/active_storage_db/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActiveStorageDB
VERSION = '0.1.2'
VERSION = '0.1.3'
end