-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmf.gemspec
26 lines (22 loc) · 1.04 KB
/
cmf.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
require File.expand_path('../lib/cmf/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'cmf'
s.version = CMF::VERSION
s.authors = ['Stephen McCarthy']
s.email = '[email protected]'
s.summary = 'Builds and parses messages in the Compact Message Format (CMF)'
s.homepage = 'https://github.com/jamoes/cmf'
s.license = 'MIT'
s.cert_chain = ['certs/jamoes.pem']
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
s.files = `git ls-files`.split("\n")
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.add_development_dependency 'bundler', '~> 1'
s.add_development_dependency 'rake', '~> 12'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'simplecov', '~> 0'
s.add_development_dependency 'yard', '~> 0.9.12'
s.add_development_dependency 'markdown', '~> 1'
s.add_development_dependency 'redcarpet', '~> 3' unless RUBY_PLATFORM == 'java'
end