forked from ohler55/ox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathox.gemspec
More file actions
27 lines (20 loc) · 789 Bytes
/
ox.gemspec
File metadata and controls
27 lines (20 loc) · 789 Bytes
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
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 = "https://github.com/ohler55/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."
s.files = Dir["{lib,ext,test}/**/*.{rb,h,c,graffle}"] + ['LICENSE', 'README.rdoc']
s.extensions = ["ext/ox/extconf.rb"]
# s.executables = []
s.require_paths = ["lib", "ext"]
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc']
s.rdoc_options = ['--main', 'README.rdoc']
s.rubyforge_project = 'ox' # dummy to keep the build quiet
end