fastlane/swift/RubyCommandable.swift in fastlane-2.149.1 vs fastlane/swift/RubyCommandable.swift in fastlane-2.150.0.rc1

- old
+ new

@@ -29,9 +29,10 @@ } protocol RubyCommandable { var type: CommandType { get } var commandJson: String { get } + var id: String { get } } extension RubyCommandable { var json: String { return "{\"commandType\" : \"\(self.type.token)\", \"command\" : \(self.commandJson)}"