forked from turboladen/rtsp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated deps, cleaned up gemspec, got rid of metric_fu dep
- Loading branch information
1 parent
44559fc
commit c90780a
Showing
5 changed files
with
51 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,36 +8,30 @@ Gem::Specification.new do |s| | |
s.name = "rtsp" | ||
s.version = RTSP::VERSION | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Steve Loveless, Mike Kirby"] | ||
s.date = %q{2011-04-14} | ||
s.homepage = %q{http://rubygems.org/gems/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 = ["[email protected], [email protected]"] | ||
s.executables = ["rtsp_client"] | ||
s.extra_rdoc_files = [ | ||
"ChangeLog.rdoc", | ||
"LICENSE.rdoc", | ||
"README.rdoc" | ||
] | ||
s.files = Dir.glob("{lib,bin,tasks}/**/*") + Dir.glob("*.rdoc") + | ||
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.homepage = %q{http://rubygems.org/gems/rtsp} | ||
s.licenses = ["MIT"] | ||
s.require_paths = ["lib"] | ||
s.rubyforge_project = %q{rtsp} | ||
s.extra_rdoc_files = %w{ChangeLog.rdoc LICENSE.rdoc README.rdoc} | ||
s.require_paths = %w{lib} | ||
s.rubygems_version = %q{1.7.2} | ||
s.summary = %q{Library to allow RTSP streaming from RTSP-enabled devices.} | ||
s.test_files = Dir.glob("{spec,features}/**/*") | ||
|
||
s.add_runtime_dependency(%q<parslet>, [">= 1.1.0"]) | ||
s.add_runtime_dependency(%q<sdp>, ["~> 0.2.6"]) | ||
|
||
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"]) | ||
s.add_development_dependency(%q<bundler>) | ||
s.add_development_dependency(%q<code_statistics>, ["~> 0.2.13"]) | ||
s.add_development_dependency(%q<metric_fu>, [">= 2.0.0"]) | ||
s.add_development_dependency(%q<roodi>, [">= 2.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"]) | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'rake/tasklib' # roodi_task fails without this. | ||
require 'roodi' | ||
require 'roodi_task' | ||
|
||
RoodiTask.new do |t| | ||
t.config = 'tasks/roodi_config.yaml' | ||
t.patterns = Dir.glob("{features,lib,spec}/**/*.rb") | ||
t.verbose = true | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters