-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathactive_storage_db.gemspec
More file actions
29 lines (22 loc) · 978 Bytes
/
active_storage_db.gemspec
File metadata and controls
29 lines (22 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "active_storage_db/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "active_storage_db"
spec.version = ActiveStorageDB::VERSION
spec.authors = ["Mattia Roccoberton"]
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"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "activestorage", ">= 6.0"
spec.add_dependency "rails", ">= 6.0"
end