Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ includes an already built extension.
== INSTALLATION
The easiest way to install libxml-ruby is via Ruby Gems. To install:

<tt>gem install libxml-ruby</tt>
<tt>gem install libxml</tt>

If you are running Windows, make sure to install the Win32 RubyGem
which includes prebuilt extensions for Ruby 1.8, 1.9 and 2.0 preview. These
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require "rubygems/package_task"
require "rdoc/task"
require "yaml"

GEM_NAME = "libxml-ruby"
GEM_NAME = "libxml"
SO_NAME = "libxml_ruby"

# Read the spec file
Expand Down
4 changes: 2 additions & 2 deletions libxml-ruby.gemspec → libxml.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version = File.read('ext/libxml/ruby_xml_version.h').match(/\s*RUBY_LIBXML_VERSION\s*['"](\d.+)['"]/)[1]

Gem::Specification.new do |spec|
spec.name = 'libxml-ruby'
spec.name = 'libxml'
spec.version = version
spec.homepage = 'http://xml4r.github.com/libxml-ruby'
spec.summary = 'Ruby Bindings for LibXML2'
Expand All @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
spec.extensions = ["ext/libxml/extconf.rb"]
spec.files = Dir.glob(['HISTORY',
'LICENSE',
'libxml-ruby.gemspec',
'libxml.gemspec',
'MANIFEST',
'Rakefile',
'README.rdoc',
Expand Down
2 changes: 1 addition & 1 deletion script/benchmark/parsecount
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ if RUBY_PLATFORM =~ /java/
gem 'nokogiri', '>= 1.0.6'
require 'nokogiri'

gem 'libxml-ruby', '>= 0.9.2'
gem 'libxml', '>= 0.9.2'
require 'libxml'
@xml_parser = LibXML::XML::Parser.new
end
Expand Down