Sha256: 950d586c2985ce7f235652f82c8a6927f32d7a360779987e3173ac0a5ac0e8d6
Contents?: true
Size: 836 Bytes
Versions: 1
Compression:
Stored size: 836 Bytes
Contents
# -*- coding: utf-8 -*- require 'English' Gem::Specification.new do |s| s.name = 'thermite' s.version = '0.2.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', '~> 11' s.add_runtime_dependency 'minitar', '~> 0.5' s.add_runtime_dependency 'tomlrb', '~> 1.2' s.add_development_dependency 'rdoc', '~> 4.2' s.add_development_dependency 'rubocop', '~> 0.40' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thermite-0.2.0 | thermite.gemspec |