-
Notifications
You must be signed in to change notification settings - Fork 1
/
adminterface.gemspec
27 lines (22 loc) · 1.08 KB
/
adminterface.gemspec
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
require_relative "lib/adminterface/version"
Gem::Specification.new do |spec|
spec.name = "adminterface"
spec.version = Adminterface::VERSION
spec.authors = ["I-Lung Lee"]
spec.email = ["ilung@hey.com"]
spec.homepage = "https://adminterface.io"
spec.summary = "Build functional and beautiful web apps faster with ActiveAdmin"
spec.description = "A gem that brings Bootstrap 5, advanced customizability, and other goodies into ActiveAdmin"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/cmdbrew/adminterface"
spec.metadata["changelog_uri"] = "#{spec.homepage}/community/changelog"
spec.metadata["github_repo"] = "ssh://github.com/cmdbrew/adminterface"
spec.required_ruby_version = ">= 2.7"
spec.files = Dir["{app,config,db,lib}/**/*", "LICENSE.md", "Rakefile", "README.md"]
spec.add_dependency "activeadmin", "~> 2.9"
spec.add_dependency "rails", ">= 6.0"
spec.add_dependency "rainbow", "~> 3.0"
spec.add_dependency "image_processing", "~> 1.0"
spec.add_dependency "httparty", ">= 0.18"
end