-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom-loader.gemspec
29 lines (24 loc) · 1016 Bytes
/
pom-loader.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
# encoding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'pom-loader/version'
Gem::Specification.new do |s|
s.name = 'pom-loader'
s.version = PomLoader::VERSION
s.license = "Apache 2.0"
s.authors = ['Matt Kinman', 'Patrick Ritchie', 'Michael May', 'Alan Scherger']
s.email = ['[email protected]']
s.homepage = 'https://github.com/homeaway/pom-loader'
s.summary = 'pom-loader - Loads maven poms into ruby context'
s.description = 'Can interpret a maven pom and pull properties and classes into context.'
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = ['README.md']
s.files = Dir['[A-Z]*', '{lib,spec}/**/*']
s.test_files = Dir.glob('spec/**/*_spec.rb')
s.require_paths = ['lib']
s.required_rubygems_version = '>= 1.3.0'
s.add_dependency 'nokogiri', '~> 1.5.0'
s.add_development_dependency 'rake', '~> 10.0.0'
s.add_development_dependency 'bundler', '~> 1.3.5'
s.add_development_dependency 'rspec', '~> 2.13.0'
end