Sha256: 8f88036ee47bc84e0e5c1dbd804009fb24250f49b1aba7e944ca7e1405ccd095

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/saxy/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["MichaƂ Szajbe"]
  gem.email         = ["michal.szajbe@gmail.com"]
  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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
saxy-0.7.1 saxy.gemspec
saxy-0.7.0 saxy.gemspec
saxy-0.6.1 saxy.gemspec
saxy-0.6.0 saxy.gemspec
saxy-0.5.2 saxy.gemspec