Sha256: 7a3cf8450cc06c66aaef4ec67324e336dafdf8b8249e2db5b6935ecf8f79f8ce
Contents?: true
Size: 1.07 KB
Versions: 7
Compression:
Stored size: 1.07 KB
Contents
# -*- mode: ruby; coding: utf-8 -*- File.expand_path('../lib', __FILE__) .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
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
xot-0.1.29 | xot.gemspec |
xot-0.1.28 | xot.gemspec |
xot-0.1.27 | xot.gemspec |
xot-0.1.26 | xot.gemspec |
xot-0.1.25 | xot.gemspec |
xot-0.1.24 | xot.gemspec |
xot-0.1.23 | xot.gemspec |