forked from fac/hermod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hermod.gemspec
33 lines (28 loc) · 1.38 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
# 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 = ["Harry Mills"]
spec.email = ["[email protected]"]
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 = ""
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 = ">= 2.0.0"
spec.add_runtime_dependency "libxml-ruby", "~> 2.7", ">= 2.7.0"
spec.add_runtime_dependency "activesupport", "> 3.2", "< 6"
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake", "~> 11.1"
spec.add_development_dependency "minitest", "~> 5.3"
spec.add_development_dependency "minitest-reporters", "~> 1.0", ">= 1.0.16"
spec.add_development_dependency "nokogiri", "~> 1.5"
end