-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathactive_storage_dashboard.gemspec
More file actions
23 lines (18 loc) · 987 Bytes
/
active_storage_dashboard.gemspec
File metadata and controls
23 lines (18 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "active_storage_dashboard"
spec.version = "0.1.8"
spec.authors = ["Giovanni Panasiti"]
spec.email = ["giova.panasiti@gmail.com"]
spec.summary = "A dashboard for Active Storage in Rails applications"
spec.description = "A mountable Rails engine that provides a dashboard to view Active Storage data"
spec.homepage = "https://github.com/giovapanasiti/active_storage_dashboard"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
# Specify which files should be added to the gem when it is released.
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 5.2.0"
end