Sha256: 8f7ab20d7e51575cf39e6ecd94b8301940b9fe9bc9814d0459973f1fc49b2c57
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
# -*- mode: ruby; coding: utf-8 -*- File.expand_path('lib', __dir__) .tap {|s| $:.unshift s if !$:.include?(s) && File.directory?(s)} require 'xot/module' Gem::Specification.new do |s| glob = -> *patterns do patterns.map {|pat| Dir.glob(pat).to_a}.flatten end mod = Xot::Module name = mod.name.downcase rdocs = glob.call *%w[README] s.name = name s.summary = 'A Utility library for C++ developemt.' s.description = 'This library include some useful utility classes and functions for development with C++.' s.version = mod.version s.authors = %w[xordog] s.email = 'xordog@gmail.com' s.homepage = "https://github.com/xord/xot" s.platform = Gem::Platform::RUBY s.required_ruby_version = '>= 2.6.0' s.add_development_dependency 'test-unit' s.files = `git ls-files`.split $/ s.executables = s.files.grep(%r{^bin/}) {|f| File.basename f} s.test_files = s.files.grep %r{^(test|spec|features)/} s.extra_rdoc_files = rdocs.to_a s.has_rdoc = true s.extensions << 'Rakefile' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xot-0.1.30 | xot.gemspec |