sig/steep/server/worker_process.rbs in steep-1.6.0 vs sig/steep/server/worker_process.rbs in steep-1.7.0.dev.1

- old
+ new

@@ -47,37 +47,37 @@ type worker_type = :interaction | :typecheck def self.start_worker: ( worker_type `type`, name: String, - steepfile: Pathname, + steepfile: Pathname?, steep_command: String?, ?patterns: Array[String], ?delay_shutdown: bool, ?index: [Integer, Integer]? ) -> WorkerProcess def self.fork_worker: ( worker_type `type`, name: String, - steepfile: Pathname, + steepfile: Pathname?, patterns: Array[String], delay_shutdown: bool, index: [Integer, Integer]? ) -> WorkerProcess def self.spawn_worker: ( worker_type `type`, name: String, - steepfile: Pathname, + steepfile: Pathname?, steep_command: ::String, patterns: Array[String], delay_shutdown: bool, index: [Integer, Integer]? ) -> WorkerProcess def self.start_typecheck_workers: ( - steepfile: Pathname, + steepfile: Pathname?, args: Array[String], steep_command: ::String?, ?count: Integer, ?delay_shutdown: bool ) -> Array[WorkerProcess]