forked from nosoloforks/rtp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtp.gemspec
33 lines (28 loc) · 1.16 KB
/
rtp.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'rtp/version'
Gem::Specification.new do |s|
s.metadata['rubygems_mfa_required'] = 'true'
s.name = 'rtp'
s.version = RTP::VERSION
s.authors = ['Steve Loveless', 'Sujin Philip', 'Roman Gaufman']
s.homepage = 'http://github.com/turboladen/rtp'
s.email = '[email protected]'
s.description = 'This is a pure Ruby implementation of RTP, initially geared \
towards use with RTSP (but not limited to).'
s.summary = 'Pure Ruby implementation of RTP'
s.required_rubygems_version = '>=1.8.0'
s.required_ruby_version = '>= 3.0.2'
s.files = Dir.glob('{lib,spec,tasks}/**/*') + Dir.glob('*.rdoc') +
%w[.gemtest Gemfile rtp.gemspec Rakefile]
s.test_files = Dir.glob('spec/**/*')
s.require_paths = 'lib'
s.add_dependency 'bindata', '>= 2.4.10'
s.add_dependency 'semantic_logger'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '>= 3.10'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'tailor', '>= 1.1.2'
s.add_development_dependency 'yard', '>= 0.7.2'
end