Sha256: 4f524c1e3330e8eb5f6a3408fbf00ebd016802650d7ba6513c78db1455a5ba3b
Contents?: true
Size: 616 Bytes
Versions: 31
Compression:
Stored size: 616 Bytes
Contents
module Granify module Model class Base attr_accessor :data, :branch, :browser, :command, :start def initialize(hash = nil) @data = hash || Granify::Model::Data.new # Current time #@time = @data.start # Time the command was executed @start = Time.now # Current working branch @branch = @data.branch # Browser to execute tests in @browser = @data.browser # Instantiate the command execution class @command = Command::Exec.new end def bind(hash) initialize(hash) end end end end
Version data entries
31 entries across 31 versions & 2 rubygems