Sha256: e7f02196680c60daf6cb7aedff5f76f67a3ef550d7434f7e76537074dd1a6a03

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

# -*- mode: ruby; coding: utf-8 -*-

GEMSPEC = Gem::Specification.new do |spec|

  # Project information
  spec.name        = "rwx"
  spec.summary     = "Ruby newest wxWidgets Binding"
  spec.description =<<-DESCRIPTION
newest Binding for wxWidgets 3.0+, it was made after wxRuby died.
  DESCRIPTION
  spec.version     = File.read("VERSION").strip.gsub("-", ".")
  spec.author      = "Hanmac"
  spec.email       = "hanmac@gmx.de"
  spec.homepage    = 'https://github.com/Hanmac/rwx'
  
  spec.license     = 'LGPL-3.0'
  
  # Requirements
  spec.platform              = Gem::Platform::RUBY
  spec.required_ruby_version = ">= 2.0.0"

  spec.add_development_dependency "rdoc", '~> 4.0'
  spec.add_development_dependency "rake", '~> 10.0'
  spec.add_development_dependency "test-unit", '~> 3.0'

  # Gem contents
  begin
    spec.files         = `git ls-files`.split("\n")
  ensure
    spec.files         = Dir["*.rdoc", "COPYING", "Rakefile", "VERSION",
      "rwx.gemspec", "ext/extconf.rb", "ext/*.*pp", "samples/**/**", "tests/**"
    ] if spec.files.empty?
  end
  
  spec.extensions << "ext/extconf.rb"
  
  spec.extra_rdoc_files = ["README.rdoc", "COPYING"]
  spec.rdoc_options << "-t" << "The rwx RDocs" << "-m" << "README.rdoc"

  spec.requirements << 'wxWidgets 3.0+'
  spec.requirements << 'git'
  spec.requirements << 'C++ compiler'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rwx-0.0.1.dev rwx.gemspec