-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
arkana.gemspec
29 lines (23 loc) · 1.1 KB
/
arkana.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
# frozen_string_literal: true
require_relative "lib/arkana/version"
Gem::Specification.new do |spec|
spec.name = "arkana"
spec.version = Arkana::VERSION
spec.authors = ["Roger Oba"]
spec.email = ["[email protected]"]
spec.license = "BSD-2-Clause"
spec.summary = "Store your keys and secrets away from your source code. Designed for Android and iOS projects."
spec.homepage = "https://github.com/rogerluan/arkana"
spec.required_ruby_version = ">= 2.7"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/rogerluan/arkana"
spec.metadata["changelog_uri"] = "https://github.com/rogerluan/arkana/blob/main/CHANGELOG.md"
spec.files = Dir["lib/**/*.{rb,erb}"] + Dir["bin/*"]
spec.executables = ["arkana"]
spec.require_paths = ["lib"]
spec.add_dependency "dotenv", "~> 2.7"
spec.add_dependency "rainbow", "~> 3.1.1"
spec.add_dependency "yaml", "~> 0.2"
# For more information and examples about making a new gem, check out our guide at: https://bundler.io/guides/creating_gem.html
spec.metadata["rubygems_mfa_required"] = "true"
end