forked from mvz/happymapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxmlmapper.gemspec
36 lines (31 loc) · 1.13 KB
/
xmlmapper.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
begin
require File.expand_path(File.join(File.dirname(__FILE__), 'lib/xmlmapper/version'))
rescue LoadError
puts 'WARNING: Could not load XmlMapper::VERSION'
end
Gem::Specification.new do |s|
s.name = 'xmlmapper'
s.version = XmlMapper::VERSION
s.authors = [
'Damien Le Berrigaud',
'John Nunemaker',
'David Bolton',
'Roland Swingler',
"Etienne Vallette d'Osia",
'Franklin Webber',
'Benoist Claassen',
'Johnny Dongelmans'
]
s.email = '[email protected]'
s.homepage = 'https://github.com/digidentity/xmlmapper'
s.description = "Object to XML Mapping Library, using Nokogiri (fork from John Nunemaker's Happymapper)"
s.summary = 'Provides a simple way to map XML to Ruby Objects and back again.'
s.license = 'MIT'
s.require_paths = ['lib']
s.files = `git ls-files -- lib/*`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.extra_rdoc_files = %w[README.md CHANGELOG.md]
s.required_ruby_version = '>= 2.5.0' # copied from nokogiri.gemspec as this should be aligned
s.add_runtime_dependency 'nokogiri', '~> 1.11'
s.add_development_dependency 'rspec', '~> 2.8'
end