1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use std::process::{Command, Stdio};
use super::{IOSContext, IOSError};
use crate::core::{Manager, Task};
pub struct OpenIOSSimulator;
impl Task for OpenIOSSimulator {
type Context = IOSContext;
type Error = IOSError;
fn verb(&self) -> &str {
"Opening"
}
fn message(&self) -> &str {
"iOS Simulator"
}
fn detail(&self) -> &str {
""
}
fn run(
&self,
context: Self::Context,
_manager: &mut Manager,
) -> Result<Self::Context, Self::Error> {
Command::new("open")
.arg("-a")
.arg("Simulator.app")
.stdout(Stdio::null())
.current_dir(context.config.target_dir.join("polyhorn-ios"))
.spawn()
.unwrap()
.wait()
.unwrap();
Ok(context)
}
}