Sha256: 51ba6c3fd4d814f96d539c67a21b2b2b3a9c339f88ced0a824f80d49550cd17b
Contents?: true
Size: 1.07 KB
Versions: 1
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' 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.22 | xot.gemspec |