Sha256: b26598970004fe69f20a3a329623fa9b75aaf186f7a2d723b6feaf93ebc570ac

Contents?: true

Size: 1 KB

Versions: 4

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

4 entries across 4 versions & 1 rubygems

Version Path
starlark_compiler-0.4.0 starlark_compiler.gemspec
starlark_compiler-0.3.0 starlark_compiler.gemspec
starlark_compiler-0.2.0 starlark_compiler.gemspec
starlark_compiler-0.1.0 starlark_compiler.gemspec