Sha256: 7b1c5e55f38d2fb486548a09548d7f1a15096e529becbb57ed2771f03f80c3ec
Contents?: true
Size: 1.06 KB
Versions: 4
Compression:
Stored size: 1.06 KB
Contents
# -*- mode: ruby; coding: utf-8 -*- File.expand_path('../lib', __FILE__) .tap {|s| $:.unshift s if !$:.include?(s) && File.directory?(s)} require 'rucy/module' Gem::Specification.new do |s| glob = -> *patterns do patterns.map {|pat| Dir.glob(pat).to_a}.flatten end mod = Rucy::Module name = mod.name.downcase rdocs = glob.call *%w[README .doc/ext/**/*.cpp] s.name = name s.summary = 'A Ruby C++ Extension Helper Library.' s.description = 'This library helps you to develop Ruby Extension by C++.' s.version = mod.version s.authors = %w[xordog] s.email = 'xordog@gmail.com' s.homepage = "https://github.com/xord/rucy" s.platform = Gem::Platform::RUBY s.required_ruby_version = '~> 2' s.add_runtime_dependency 'xot', '~> 0.1' 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rucy-0.1.16 | rucy.gemspec |
rucy-0.1.15 | rucy.gemspec |
rucy-0.1.14 | rucy.gemspec |
rucy-0.1.13 | rucy.gemspec |