Sha256: 20747b68b7c620a335ad17605e2f467d58af9077148623fee2807ed4b661d375

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

Gem::Specification.new do |spec|
  spec.name          = "xml_data_extractor"
  spec.version       = "0.4.0"
  spec.authors       = ["Fernando Almeida"]
  spec.email         = ["fernandoprsbr@gmail.com"]

  spec.summary       = "Provides a simples DSL for extracting data from XML documents"
  spec.homepage      = "https://github.com/monde-sistemas/xml_data_extractor"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage
  spec.metadata["changelog_uri"] = spec.homepage

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "nokogiri", "~> 1.0"
  spec.add_dependency "activesupport", "~> 6.0"
  spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xml_data_extractor-0.4.0 xml_data_extractor.gemspec