mdq 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.base.md +16 -1
- data/README.ja.md +16 -1
- data/README.md +16 -1
- data/lib/mdq/cli.rb +5 -0
- data/lib/mdq/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43d0cbc1e08b78f4cbf8fa0b9d159b0c584baf82756531c318aa248be4be3acc
|
|
4
|
+
data.tar.gz: 28a27cfaf7dfaf45a8d6a20bb69a7ad2f0ae95fae36d7d38940e1d09d8a4eaac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01d6c40eaa82839abfdf52d7a63b3a49d14a166db119e7f7d8a4a3c940fa34288dae854e83c8b9df44449739c915a43a021c63b9f5c23f5412c9954b65304268
|
|
7
|
+
data.tar.gz: 0212b0e804f55dd572fb9f9e6c59ee48052f76f2bf7380cfbafeb252b9f1854e58e1ed8c11a5f2785ccd4bfd41ae1fc796d6aecd56354823a445002ef1ca68e5
|
data/README.base.md
CHANGED
|
@@ -130,12 +130,26 @@ Apple Devices displays the apps installed with Xcode.
|
|
|
130
130
|
$ mdq list -q='select * from apps'
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
+
## Screenshot of a physical device
|
|
134
|
+
|
|
133
135
|
Take a screenshot on Android.
|
|
134
136
|
|
|
135
137
|
```
|
|
136
138
|
$ mdq cap -o='/Users/xxxxx/' -u='UDID'
|
|
137
139
|
```
|
|
138
140
|
|
|
141
|
+
|
|
142
|
+
## Screenshot of a simulator
|
|
143
|
+
|
|
144
|
+
Take a screenshot of the simulator.
|
|
145
|
+
Start the Android emulator or Apple simulator beforehand.
|
|
146
|
+
|
|
147
|
+
```
|
|
148
|
+
$ mdq simcap --android='/Users/xxxxx/android.png' --apple='/Users/xxxxx/apple.png'
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
## Install the app
|
|
152
|
+
|
|
139
153
|
Install the app.
|
|
140
154
|
|
|
141
155
|
```
|
|
@@ -143,6 +157,8 @@ $ mdq install -i='/Users/xxxxx/example.apk' -u='UDID'
|
|
|
143
157
|
$ mdq install -i=='/Users/xxxxx/example.ipa' -u='UDID'
|
|
144
158
|
```
|
|
145
159
|
|
|
160
|
+
## Unistall the app
|
|
161
|
+
|
|
146
162
|
Uninstall the app.
|
|
147
163
|
|
|
148
164
|
```
|
|
@@ -150,7 +166,6 @@ $ mdq uninstall -i='com.example.app' -u='UDID'
|
|
|
150
166
|
```
|
|
151
167
|
|
|
152
168
|
|
|
153
|
-
|
|
154
169
|
# Specification
|
|
155
170
|
|
|
156
171
|
Details of the devices table.
|
data/README.ja.md
CHANGED
|
@@ -125,12 +125,26 @@ Apple Devices displays the apps installed with Xcode.
|
|
|
125
125
|
$ mdq list -q='select * from apps'
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
+
## Screenshot of a physical device
|
|
129
|
+
|
|
128
130
|
Take a screenshot on Android.
|
|
129
131
|
|
|
130
132
|
```
|
|
131
133
|
$ mdq cap -o='/Users/xxxxx/' -u='UDID'
|
|
132
134
|
```
|
|
133
135
|
|
|
136
|
+
|
|
137
|
+
## Screenshot of a simulator
|
|
138
|
+
|
|
139
|
+
Take a screenshot of the simulator.
|
|
140
|
+
Start the Android emulator or Apple simulator beforehand.
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
$ mdq simcap --android='/Users/xxxxx/android.png' --apple='/Users/xxxxx/apple.png'
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
## Install the app
|
|
147
|
+
|
|
134
148
|
Install the app.
|
|
135
149
|
|
|
136
150
|
```
|
|
@@ -138,6 +152,8 @@ $ mdq install -i='/Users/xxxxx/example.apk' -u='UDID'
|
|
|
138
152
|
$ mdq install -i=='/Users/xxxxx/example.ipa' -u='UDID'
|
|
139
153
|
```
|
|
140
154
|
|
|
155
|
+
## Unistall the app
|
|
156
|
+
|
|
141
157
|
Uninstall the app.
|
|
142
158
|
|
|
143
159
|
```
|
|
@@ -145,7 +161,6 @@ $ mdq uninstall -i='com.example.app' -u='UDID'
|
|
|
145
161
|
```
|
|
146
162
|
|
|
147
163
|
|
|
148
|
-
|
|
149
164
|
# Specification
|
|
150
165
|
|
|
151
166
|
Details of the devices table.
|
data/README.md
CHANGED
|
@@ -125,12 +125,26 @@ Apple Devices displays the apps installed with Xcode.
|
|
|
125
125
|
$ mdq list -q='select * from apps'
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
+
## Screenshot of a physical device
|
|
129
|
+
|
|
128
130
|
Take a screenshot on Android.
|
|
129
131
|
|
|
130
132
|
```
|
|
131
133
|
$ mdq cap -o='/Users/xxxxx/' -u='UDID'
|
|
132
134
|
```
|
|
133
135
|
|
|
136
|
+
|
|
137
|
+
## Screenshot of a simulator
|
|
138
|
+
|
|
139
|
+
Take a screenshot of the simulator.
|
|
140
|
+
Start the Android emulator or Apple simulator beforehand.
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
$ mdq simcap --android='/Users/xxxxx/android.png' --apple='/Users/xxxxx/apple.png'
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
## Install the app
|
|
147
|
+
|
|
134
148
|
Install the app.
|
|
135
149
|
|
|
136
150
|
```
|
|
@@ -138,6 +152,8 @@ $ mdq install -i='/Users/xxxxx/example.apk' -u='UDID'
|
|
|
138
152
|
$ mdq install -i=='/Users/xxxxx/example.ipa' -u='UDID'
|
|
139
153
|
```
|
|
140
154
|
|
|
155
|
+
## Unistall the app
|
|
156
|
+
|
|
141
157
|
Uninstall the app.
|
|
142
158
|
|
|
143
159
|
```
|
|
@@ -145,7 +161,6 @@ $ mdq uninstall -i='com.example.app' -u='UDID'
|
|
|
145
161
|
```
|
|
146
162
|
|
|
147
163
|
|
|
148
|
-
|
|
149
164
|
# Specification
|
|
150
165
|
|
|
151
166
|
Details of the devices table.
|
data/lib/mdq/cli.rb
CHANGED
data/lib/mdq/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mdq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- arthur87
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-04-
|
|
10
|
+
date: 2026-04-27 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: rubocop
|