马拉松
marathon-ruby是 Marathon API 的 Ruby 客户端。 到目前为止,它还没有完成,但包括启动/更新/删除应用程序的基本功能。
安装
将此行添加到应用程序的 Gemfile 中:
gem 'marathon-ruby'
然后执行:
$ bundle
或者自己安装:
$ gem install marathon-ruby
用法
require 'marathon'
client = Marathon . new ( 'your-marathon-server.com' )
client . create_app ( configuration )
client . update_appp ( id , configuration )
client . find_app ( id )
client . delete_app ( id )
发展
签
2021-06-18 13:05:08
8KB
Ruby
1