forked from turboladen/rtp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rtp.gemspec
30 lines (26 loc) · 1.08 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
$:.push File.expand_path("../lib", __FILE__)
require 'rtp/version'
Gem::Specification.new do |s|
s.name = "rtp"
s.version = RTP::VERSION
s.authors = ["Steve Loveless", "Sujin Philip"]
s.homepage = %q(http://github.com/turboladen/rtp)
s.email = %w([email protected])
s.description = %q(This is a pure Ruby implementation of RTP, initially geared
towards use with RTSP (but not limited to).)
s.summary = %q(Pure Ruby implementation of RTP)
s.required_rubygems_version = ">=1.8.0"
s.required_ruby_version = Gem::Requirement.new(">= 1.9.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 = %w(lib)
s.add_dependency "bindata", "~> 1.4"
s.add_dependency "log_switch", ">=0.4.0"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 2"
s.add_development_dependency "simplecov"
s.add_development_dependency "tailor", ">= 1.1.2"
s.add_development_dependency "yard", ">= 0.7.2"
end