forked from mkxp-z/mkxp-z
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkxp-z.gemspec
31 lines (24 loc) · 1.14 KB
/
mkxp-z.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
# frozen_string_literal: true
require_relative "lib/mkxp-z/version"
Gem::Specification.new do |spec|
spec.name = "mkxp-z"
spec.version = MkxpZ.get_full_version_name
spec.authors = ["Francesco Corso"]
spec.email = ["[email protected]"]
spec.summary = "Ruby Gem for MKXP-Z"
spec.description = "Convert MKXP-Z from a static exe to a library that can be loaded in an Ruby enviornment"
spec.homepage = "https://github.com/fcorso2016/mkxp-z-gem"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/fcorso2016/mkxp-z-gem.git"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir["{bin,lib,sig}/**/*",
"LICENSE.txt",
"Rakefile"]
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end