-
Notifications
You must be signed in to change notification settings - Fork 3
/
mission_control-servers.gemspec
33 lines (28 loc) · 1.3 KB
/
mission_control-servers.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
28
29
30
31
32
33
require_relative "lib/mission_control/servers/version"
Gem::Specification.new do |spec|
spec.name = "mission_control-servers"
spec.version = MissionControl::Servers::VERSION
spec.authors = ["Dave Kimura"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/kobaltz/mission_control-servers"
spec.summary = "Dashboard for managing servers."
spec.description = "Dashboard for managing servers."
spec.license = "MIT"
spec.post_install_message = <<~MESSAGE
MissionControl::Servers requires additional setup.
Please run the following command to install the necessary files:
bin/rails mission_control_servers:install:migrations
MESSAGE
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/kobaltz/mission_control-servers"
spec.metadata["changelog_uri"] = "https://github.com/kobaltz/mission_control-servers"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 7.0.0"
spec.add_dependency 'importmap-rails'
spec.add_dependency 'turbo-rails'
spec.add_dependency 'stimulus-rails'
spec.add_dependency "tailwindcss-rails"
spec.add_development_dependency "simplecov"
end