-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtiny_admin.gemspec
More file actions
35 lines (27 loc) · 1.05 KB
/
tiny_admin.gemspec
File metadata and controls
35 lines (27 loc) · 1.05 KB
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
30
31
32
33
34
35
# frozen_string_literal: true
$:.push File.expand_path("lib", __dir__)
require "tiny_admin/version"
Gem::Specification.new do |spec|
spec.platform = Gem::Platform::RUBY
spec.name = "tiny_admin"
spec.version = TinyAdmin::VERSION
spec.summary = "Tiny Admin"
spec.description = "A compact and composable dashboard component for Ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.author = "Mattia Roccoberton"
spec.email = "mat@blocknot.es"
spec.homepage = "https://github.com/blocknotes/tiny_admin"
spec.metadata = {
"homepage_uri" => spec.homepage,
"source_code_uri" => spec.homepage,
"changelog_uri" => "https://github.com/blocknotes/tiny_admin/blob/main/CHANGELOG.md",
"rubygems_mfa_required" => "true"
}
spec.files = Dir["{app,db,lib}/**/*", "LICENSE.txt", "README.md"]
spec.require_paths = ["lib"]
spec.add_dependency "phlex", "~> 1", ">= 1.10.0"
spec.add_dependency "roda", "~> 3"
spec.add_dependency "tilt", "~> 2"
spec.add_dependency "zeitwerk", "~> 2"
end