forked from soulcutter/saxerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
saxerator.gemspec
40 lines (36 loc) · 1.19 KB
/
saxerator.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
34
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'saxerator/version'
Gem::Specification.new do |s|
s.name = 'saxerator'
s.version = Saxerator::VERSION
s.authors = ['Bradley Schaefer']
s.email = ['[email protected]']
s.homepage = 'https://github.com/soulcutter/saxerator'
s.summary = 'A SAX-based XML-to-hash parser for parsing large files into manageable chunks'
s.description = <<-eos
Saxerator is a streaming xml-to-hash parser designed for working with very large xml files by
giving you Enumerable access to manageable chunks of the document.
eos
s.license = 'MIT'
s.rubyforge_project = 'saxerator'
s.files = [
'LICENSE',
'README.md',
'saxerator.gemspec',
'Gemfile',
'Rakefile',
'.gitignore',
'.travis.yml'
] +
Dir.glob('lib/**/*.rb') +
Dir.glob('spec/**/*.*') +
Dir.glob('benchmark/**/*.rb')
s.test_files = Dir.glob('spec/**/*.*')
s.executables = []
s.require_paths = ['lib']
s.add_development_dependency 'nokogiri', '>= 1.4.0'
s.add_development_dependency 'ox'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.1'
end