forked from turboladen/rtsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtsp.gemspec
39 lines (33 loc) · 1.55 KB
/
rtsp.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
34
35
36
37
38
39
# -*- encoding: utf-8 -*-
lib = File.expand_path('lib/', File.dirname(__FILE__))
$:.unshift lib unless $:.include?(lib)
require 'rtsp/version'
Gem::Specification.new do |s|
s.name = "rtsp"
s.version = RTSP::VERSION
s.homepage = %q{https://github.com/turboladen/rtsp}
s.authors = ["Steve Loveless, Mike Kirby", "Sujin Philip"]
s.summary = %q{Library to allow RTSP streaming from RTSP-enabled devices.}
s.description = %q{This library intends to follow the RTSP RFC document (2326)
to allow for working with RTSP servers. At this point, it's up to you to parse
the data from a play call, but we'll get there. ...eventually.
For more information see: http://www.ietf.org/rfc/rfc2326.txt}
s.email = %w{[email protected]}
s.licenses = %w{MIT}
s.executables = %w{rtsp_client}
s.files = Dir.glob("{lib,bin,spec,tasks}/**/*") + Dir.glob("*.rdoc") +
%w(.gemtest rtsp.gemspec Gemfile Rakefile)
s.extra_rdoc_files = %w{ChangeLog.rdoc LICENSE.rdoc README.rdoc}
s.require_paths = %w{lib}
s.rubygems_version = %q{1.7.2}
s.test_files = Dir.glob("{spec,features}/**/*")
s.add_runtime_dependency(%q<parslet>, [">= 1.1.0"])
s.add_runtime_dependency(%q<rtp>, [">= 0.0.1"])
s.add_runtime_dependency(%q<sdp>, ["~> 0.2.6"])
s.add_development_dependency(%q<bundler>)
s.add_development_dependency(%q<cucumber>, [">= 1.1.0"])
s.add_development_dependency(%q<rake>, [">= 0.8.7"])
s.add_development_dependency(%q<rspec>, [">= 2.5.0"])
s.add_development_dependency(%q<simplecov>, [">= 0.4.0"])
s.add_development_dependency(%q<yard>, [">= 0.6.0"])
end