-
Notifications
You must be signed in to change notification settings - Fork 8
/
rcap.gemspec
29 lines (24 loc) · 1.01 KB
/
rcap.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 -*-
$:.unshift File.expand_path('../lib', __FILE__)
require 'rcap/version'
Gem::Specification.new do |s|
s.name = 'rcap'
s.version = RCAP::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Farrel Lifson']
s.email = ['[email protected]']
s.homepage = 'http://www.aimred.com/projects/rcap'
s.summary = 'CAP(Common Alerting Protocol) API'
s.description = 'A Ruby API providing parsing, generation and validation of CAP(Common Alerting Protocol) messages.'
s.rubyforge_project = 'rcap'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.extra_rdoc_files = ['README.md','CHANGELOG.md']
s.add_dependency('json')
s.add_dependency('uuidtools')
s.add_development_dependency('rspec')
s.add_development_dependency('yard')
s.add_development_dependency('webmock')
end