Sha256: ab71dd31ad029822a9642976f795e6004b2cab82c3231f1622ace8a2260ebb00
Contents?: true
Size: 1.5 KB
Versions: 2
Compression:
Stored size: 1.5 KB
Contents
# -*- encoding: utf-8 -*- # Determine the current version of the software version = File.read('ext/libxml/ruby_xml_version.h').match(/\s*RUBY_LIBXML_VERSION\s*['"](\d.+)['"]/)[1] # ------- Default Package ---------- FILES = FileList[ 'HISTORY', 'LICENSE', 'libxml-ruby.gemspec', 'MANIFEST', 'Rakefile', 'README.rdoc', 'setup.rb', 'ext/libxml/*.h', 'ext/libxml/*.c', 'ext/libxml/*.rb', 'ext/mingw/Rakefile', 'ext/mingw/build.rake', 'ext/vc/*.sln', 'ext/vc/*.vcproj', 'lib/**/*.rb', 'script/**/*', 'test/**/*' ] Gem::Specification.new do |spec| spec.name = 'libxml-ruby' spec.version = version spec.homepage = 'http://xml4r.github.com/libxml-ruby' spec.summary = 'Ruby Bindings for LibXML2' spec.description = <<-EOS The Libxml-Ruby project provides Ruby language bindings for the GNOME Libxml2 XML toolkit. It is free software, released under the MIT License. Libxml-ruby's primary advantage over REXML is performance - if speed is your need, these are good libraries to consider, as demonstrated by the informal benchmark below. EOS spec.authors = ['Ross Bamform', 'Wai-Sun Chia', 'Sean Chittenden', 'Dan Janwoski', 'Anurag Priyam', 'Charlie Savage'] spec.platform = Gem::Platform::RUBY spec.bindir = "bin" spec.extensions = ["ext/libxml/extconf.rb"] spec.files = FILES.to_a spec.test_files = Dir.glob("test/tc_*.rb") spec.required_ruby_version = '>= 1.8.6' spec.date = DateTime.now spec.has_rdoc = true end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-2.0.0-x86-mingw32 | libxml-ruby.gemspec |
libxml-ruby-2.0.0 | libxml-ruby.gemspec |