ruby-x11/ruby-x11.gemspec

25 lines
794 B
Ruby
Raw Normal View History

2012-03-09 06:51:31 +01:00
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "X11/version"
Gem::Specification.new do |s|
s.name = "pure-x11"
2012-03-09 06:51:31 +01:00
s.version = X11::VERSION
s.authors = ["Vidar Hokstad", "Richard Ramsden"]
s.email = ["vidar@hokstad.com"]
2012-03-09 06:51:31 +01:00
s.homepage = ""
s.summary = "Pure Ruby X11 bindings"
s.description = "Pure Ruby X11 bindings"
2012-03-09 06:51:31 +01:00
#s.rubyforge_project = "ruby-x11"
2012-03-09 06:51:31 +01:00
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