Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
module EventSource
  module Controls
    module Stream
      def self.example(stream_name: nil, category: nil, id: nil, randomize_category: nil)
        stream_name ||= StreamName.example category: category, id: id, randomize_category: randomize_category
        EventSource::Stream.new stream_name
      end

      module Category
        def self.example(category: nil, randomize_category: nil)
          category ||= Controls::Category.example category: category, randomize_category: randomize_category
          EventSource::Stream.new category
        end
      end
    end
  end
end