module ActiveVlc

dsl.rb Login : <lta@still> Started on Wed Jun 12 20:48:40 2013 Lta Akr $Id$

Author(s):

- Lta Akr <>

Copyright (C) 2013 Lta Akr

This concern handle Stage's named parameter storage and assignment logic using a visitor pattern

debug_print.rb Login : <lta@still> Started on Fri Sep 6 17:42:31 2013 Lta Akr $Id$

Author(s):

- Lta Akr <>

Copyright (C) 2013 Lta Akr

Small note about this file code's coverage Since most of the code is wan in another process (see run), the code coverage cannot be reported. This file have around 100% of test code coverage

stage.rb Login : <lta@still> Started on Wed Jul 3 16:08:37 2013 Lta Akr $Id$

Author(s):

- Lta Akr <>

Copyright (C) 2013 Lta Akr

Constants

CODENAME
VERSION

Public Class Methods

parse(path) click to toggle source
# File lib/activevlc/syntactic_sugar.rb, line 8
def self.parse(path)
  ActiveVlc::Pipeline.parse(path)
end
pipe(inputs = nil, &block) click to toggle source
# File lib/activevlc/syntactic_sugar.rb, line 2
def self.pipe(inputs = nil, &block)
  ActiveVlc::Pipeline.new(inputs, &block)
end
pipe_for(inputs = nil, &block) click to toggle source
# File lib/activevlc/syntactic_sugar.rb, line 5
def self.pipe_for(inputs = nil, &block)
  self.pipe(inputs, &block)
end