Sha256: 0169c71110b5e170f8507413d6284b40a53c9d24beb5b9c4dbe1436b1012d64c

Contents?: true

Size: 944 Bytes

Versions: 1

Compression:

Stored size: 944 Bytes

Contents

# frozen_string_literal: true

Gem::Specification.new do|spec|
  spec.name = 'mingw-make'
  spec.summary = 'Patches that enable Windows Ruby to install C extension gems with MinGW without MSYS2 (Devkit)'
  spec.version = '1.2.0'
  spec.author = 'ParadoxV5'
  spec.license = 'WTFPL'
  
  github_account = spec.author
  github = "https://github.com/#{github_account}/ruby-#{spec.name}"
  spec.metadata = {
    'homepage_uri'      => spec.homepage = github,
    'changelog_uri'     => File.join(github, 'releases'),
    'bug_tracker_uri'   => File.join(github, 'issues'),
    'funding_uri'       => "https://github.com/sponsors/#{github_account}"
  }
  
  spec.files = Dir['**/*'].grep_v 'Gemfile'
  spec.executable = 'make'
  
  spec.platform = 'x64-mingw-ucrt'
  spec.required_ruby_version = '~> 3.1'
  spec.requirements = [
    'Ruby from RubyInstaller2 for Windows without DevKit (MSYS2)',
    'UCRT MinGW'
  ]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mingw-make-1.2.0-x64-mingw-ucrt mingw-make.gemspec