-
Notifications
You must be signed in to change notification settings - Fork 6
/
saxy.gemspec
24 lines (19 loc) · 1.07 KB
/
saxy.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/saxy/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Michał Szajbe"]
gem.email = ["[email protected]"]
gem.description = %q{Saxy finds object definitions in XML files and translates them into Ruby objects. It uses SAX parser under the hood, which means that it doesn't load the whole XML file into memory. It goes once through it and yields objects along the way.}
gem.summary = %q{Memory-efficient XML parser. Finds object definitions and translates them into Ruby objects.}
gem.homepage = "http://github.com/humante/saxy"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "saxy"
gem.require_paths = ["lib"]
gem.version = Saxy::VERSION
gem.required_ruby_version = ">= 1.9.3"
gem.add_dependency "nokogiri"
gem.add_development_dependency "rspec"
gem.add_development_dependency "appraisal"
end