-
Notifications
You must be signed in to change notification settings - Fork 2
/
hermod.gemspec
41 lines (35 loc) · 1.75 KB
/
hermod.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
41
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hermod/version'
Gem::Specification.new do |spec|
spec.name = "hermod"
spec.version = Hermod::VERSION
spec.authors = ["FreeAgent"]
spec.email = ["opensource@freeagent.com"]
spec.summary = %q{A Ruby library for talking to the HMRC Government Gateway.}
spec.description = %q{A Ruby library for talking to the HMRC Government Gateway.
This provides a builder for creating classes that can generate the XML needed complete with type information and
runtime validation.}
spec.homepage = "https://github.com/fac/hermod"
spec.license = "Apache License, Version 2.0"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.0"
spec.add_runtime_dependency "libxml-ruby", "~> 4.1"
spec.add_runtime_dependency "activesupport", "> 3.2"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 13.2"
spec.add_development_dependency "minitest", "~> 5.15"
spec.add_development_dependency "minitest-reporters", "~> 1.6"
spec.add_development_dependency "nokogiri", "~> 1.16"
spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
"bug_tracker_uri" => "https://github.com/fac/hermod/issues",
"changelog_uri" => "https://github.com/fac/hermod/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/fac/hermod",
"wiki_uri" => "https://github.com/fac/hermod/blob/master/README.md"
}
end