-
-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathmadmin.gemspec
More file actions
27 lines (22 loc) · 892 Bytes
/
madmin.gemspec
File metadata and controls
27 lines (22 loc) · 892 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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "madmin/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "madmin"
spec.version = Madmin::VERSION
spec.authors = ["Chris Oliver", "Andrea Fomera"]
spec.email = ["excid3@gmail.com", "afomera@hey.com"]
spec.homepage = "https://github.com/excid3/madmin"
spec.summary = "A modern admin for Ruby on Rails apps"
spec.description = "It's an admin, obviously."
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.required_ruby_version = ">= 3.2.0"
spec.add_dependency "rails", ">= 7.0.0"
spec.add_dependency "pagy", ">= 3.5"
spec.add_dependency "propshaft"
spec.add_dependency "importmap-rails"
spec.add_dependency "stimulus-rails"
spec.add_dependency "turbo-rails"
end