forked from tim-vandecasteele/ox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ox.gemspec
33 lines (25 loc) · 1022 Bytes
/
ox.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'date'
require File.join(File.dirname(__FILE__), 'lib/ox/version')
Gem::Specification.new do |s|
s.name = "ox"
s.version = ::Ox::VERSION
s.authors = "Peter Ohler"
s.date = Date.today.to_s
s.email = "peter@ohler.com"
s.homepage = "http://www.ohler.com/ox"
s.summary = "A fast XML parser and object serializer."
s.description = %{A fast XML parser and object serializer that uses only standard C lib.
Optimized XML (Ox), as the name implies was written to provide speed optimized
XML handling. It was designed to be an alternative to Nokogiri and other Ruby
XML parsers for generic XML parsing and as an alternative to Marshal for Object
serialization. }
s.licenses = ['MIT']
s.files = Dir["{lib,ext}/**/*.{rb,h,c}"] + ['LICENSE', 'README.md']
s.extensions = ["ext/ox/extconf.rb"]
# s.executables = []
s.require_paths = ["lib", "ext"]
s.has_rdoc = true
s.extra_rdoc_files = ['README.md']
s.rdoc_options = ['--main', 'README.md']
s.rubyforge_project = 'ox'
end