forked from mvz/happymapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nokogiri-happymapper.gemspec
32 lines (27 loc) · 1.1 KB
/
nokogiri-happymapper.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'happymapper/version'
Gem::Specification.new do |s|
s.name = %q{nokogiri-happymapper}
s.version = ::HappyMapper::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Damien Le Berrigaud",
"John Nunemaker",
"David Bolton",
"Roland Swingler",
"Etienne Vallette d'Osia",
"Franklin Webber"]
s.email = '[email protected]'
s.date = %q{2014-02-18}
s.description = %q{Object to XML Mapping Library, using Nokogiri (fork from John Nunemaker's Happymapper)}
s.extra_rdoc_files = [ "README.md", "CHANGELOG.md" ]
s.files = `git ls-files -- lib/*`.split("\n")
s.homepage = %q{https://github.com/dam5s/happymapper}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.4.1}
s.summary = %q{Provides a simple way to map XML to Ruby Objects and back again.}
s.license = "MIT"
s.test_files = `git ls-files -- spec/*`.split("\n")
s.add_dependency(%q<nokogiri>, "~> 1.5" )
end