-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstandalone-ruby.gemspec
More file actions
23 lines (19 loc) · 945 Bytes
/
standalone-ruby.gemspec
File metadata and controls
23 lines (19 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative 'lib/version/version'
Gem::Specification.new do |spec|
spec.name = "standalone-ruby"
spec.version = StandaloneRuby::VERSION
spec.authors = ["Arda Tetik"]
spec.email = ["ardatetik1881@gmail.com"]
spec.summary = "Standalone Ruby application packager"
spec.description = "Make Ruby independent!"
spec.homepage = "https://github.com/ardatetikbey/Standalone-Ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/ardatetikbey/Standalone-Ruby"
spec.metadata["changelog_uri"] = "https://github.com/ardatetikbey/Standalone-Ruby/blob/main/CHANGELOG.md"
spec.files = Dir.glob("{bin,lib}/**/*") + ["CHANGELOG.md"]
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end