Sha256: 172ae036e9af0abea729526acc803e7e36fd43464e47b1fb37a910bbce793d5f
Contents?: true
Size: 1.02 KB
Versions: 7
Compression:
Stored size: 1.02 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.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.21 | xot.gemspec |
xot-0.1.20 | xot.gemspec |
xot-0.1.19 | xot.gemspec |
xot-0.1.16 | xot.gemspec |
xot-0.1.15 | xot.gemspec |
xot-0.1.14 | xot.gemspec |
xot-0.1.13 | xot.gemspec |