2017-01-22 04:28:33 +01:00
|
|
|
require "hbc/system_command"
|
|
|
|
|
2016-09-24 13:52:43 +02:00
|
|
|
module Hbc
|
|
|
|
class DSL
|
|
|
|
class Appcast
|
2017-10-04 15:47:53 +02:00
|
|
|
attr_reader :uri, :checkpoint, :parameters
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2017-10-04 15:47:53 +02:00
|
|
|
def initialize(uri, **parameters)
|
|
|
|
@uri = URI(uri)
|
|
|
|
@parameters = parameters
|
|
|
|
@checkpoint = parameters[:checkpoint]
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2016-09-24 13:52:43 +02:00
|
|
|
def to_yaml
|
2017-10-04 15:47:53 +02:00
|
|
|
[uri, parameters].to_yaml
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2016-09-24 13:52:43 +02:00
|
|
|
def to_s
|
2017-10-04 15:47:53 +02:00
|
|
|
uri.to_s
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
end
|