-
Notifications
You must be signed in to change notification settings - Fork 32
/
sail.gemspec
28 lines (23 loc) · 984 Bytes
/
sail.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "sail/version"
Gem::Specification.new do |s|
s.name = "sail"
s.version = Sail::VERSION
s.authors = ["Vinicius Stock"].freeze
s.email = ["vinicius.stock@outlook.com"].freeze
s.homepage = "https://github.com/vinistock/sail"
s.summary = "Sail is a lightweight Rails engine that brings an admin panel for managing configuration settings on a live Rails app."
s.description = "Sail is a lightweight Rails engine that brings an admin panel for managing configuration settings on a live Rails app."
s.license = "MIT"
s.files = Dir["{app,config,lib}/**/*",
"MIT-LICENSE",
"Rakefile",
"README.md"].reject { |path| path.include?("sail.gif") }
s.required_ruby_version = ">= 2.5.0"
s.add_dependency "fugit"
s.add_dependency "rails", ">= 5.0.0"
s.metadata = {
"rubygems_mfa_required" => "true"
}
end