Sha256: f139ddab4f57c658e1523f8d76e05c583536b45a48a32b0a266e1a18fe73fd8a
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'starlark_compiler/version' Gem::Specification.new do |spec| spec.name = 'starlark_compiler' spec.version = StarlarkCompiler::VERSION spec.authors = ['Samuel Giddins'] spec.email = ['segiddins@segiddins.me'] spec.summary = 'A starlark gem' spec.homepage = 'https://github.com/segiddins/starlark_compiler' spec.license = 'MIT' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = spec.homepage spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0") .reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.6' spec.add_development_dependency 'bundler', '~> 2.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
starlark_compiler-0.5.0 | starlark_compiler.gemspec |