Sha256: 2671212cdfda353cd3a898c1cc7a506c25cf9bf11d2922be56bf0d229db90a41
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.3.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.3.0 | thermite.gemspec |