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    
process_host / lib / process_host / controls / process.rb
Size: Mime:
module ProcessHost
  module Controls
    module Process
      def self.example
        Example.new
      end

      module Name
        def self.example
          :example_process
        end
      end

      class Example
        include ProcessHost::Process

        process_name Name.example

        attr_accessor :started

        def start
          self.started = true
        end

        module Assertions
          def started?
            started ? true : false
          end
        end
      end
    end
  end
end