ruby-x11/ruby-x11.gemspec
Vidar Hokstad 799b9a9595 I've been unable to get hold of the previous author, so for the time
being at least I'm pushing this to Rubygems.org as pure-x11.
2023-09-25 18:56:11 +01:00

24 lines
794 B
Ruby

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "X11/version"
Gem::Specification.new do |s|
s.name = "pure-x11"
s.version = X11::VERSION
s.authors = ["Vidar Hokstad", "Richard Ramsden"]
s.email = ["vidar@hokstad.com"]
s.homepage = ""
s.summary = "Pure Ruby X11 bindings"
s.description = "Pure Ruby X11 bindings"
#s.rubyforge_project = "ruby-x11"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
end