Sha256: f1cb47809ba7b94defdc5e154298d1064bbe414b0ea6fa618cd4d949a82a7c97

Contents?: true

Size: 938 Bytes

Versions: 1

Compression:

Stored size: 938 Bytes

Contents

# -*- coding: utf-8 -*-
require 'English'

Gem::Specification.new do |s|
  s.name        = 'thermite'
  s.version     = '0.8.0'
  s.summary     = 'Rake helpers for Rust+Ruby'
  s.description = 'A Rake-based helper for building and distributing Rust-based Ruby extensions'

  s.authors     = ['Mark Lee']
  s.email       = 'malept@users.noreply.github.com'
  s.homepage    = 'https://github.com/malept/thermite'
  s.license     = 'MIT'

  s.files         = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
  s.require_paths = %w(lib)

  # Mostly due to tomlrb
  s.required_ruby_version = '>= 2.0.0'

  s.add_runtime_dependency 'rake', '>= 10'
  s.add_runtime_dependency 'minitar', '~> 0.5'
  s.add_runtime_dependency 'tomlrb', '~> 1.2'
  s.add_development_dependency 'minitest', '~> 5.9'
  s.add_development_dependency 'mocha', '~> 1.1'
  s.add_development_dependency 'rubocop', '~> 0.41'
  s.add_development_dependency 'yard', '~> 0.9'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thermite-0.8.0 thermite.gemspec