blimpy
blimpy copied to clipboard
A livery URL should fetch the data and bootstrap it
I think the direction that I will go with this is have a separate option for "URL-based" liveries, e.g.
Blimpy.fleet do |f|
f.add(:aws) do |ship|
ship.name = 'demo'
#ship.livery = Blimpy::Livery::CWD
ship.livery_url = 'https://github.com/some/url'
end
end
Still not sure what will be at the end of the #livery_url but it will need to be some form of executable code I think.