app/cyclid/plugins/builder/docker.rb in cyclid-0.3.3 vs app/cyclid/plugins/builder/docker.rb in cyclid-0.4.0
- old
+ new
@@ -82,9 +82,17 @@
def release(_transport, buildhost)
container = get_container(buildhost[:host])
container.delete(force: true)
end
+ # Plugin metadata
+ def self.metadata
+ super.merge!(version: Cyclid::Api::VERSION,
+ license: 'Apache-2.0',
+ author: 'Liqwyd Ltd.',
+ homepage: 'http://docs.cyclid.io')
+ end
+
# Register this plugin
register_plugin 'docker'
private