xcmonkey 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd9f0e62a4820d7e9041cf5219b79941fd416829f2943c68a354ed5dd46dd6aa
4
- data.tar.gz: 80debe535a05457eb8cce60b1c9f43feae95e00b1849206f1e8c2d0c2194ae44
3
+ metadata.gz: bf6aac9a0ce5cf477ad675ca689b4120411e39a19b3b5cd7647b47dea04db9c1
4
+ data.tar.gz: fb564d25a9085e5bb9fdfa277a877278ab8055c502699f3a2b9430280a035046
5
5
  SHA512:
6
- metadata.gz: 8ef6ae85c92902d29d04d59b0d2ec4ebed20877054edaa8c00f767db88e3c6d5232f8603159b78478562a53b154a7249ac6721ab20b14524d755367daaf73100
7
- data.tar.gz: 57e3829a912bb9d7997f8bfa94e7748cefbe9ea4130efaa3fe8167ae91b70d8e90bbb1d30a5dccf997717ac2c83626cf761947f826239d85883c7f2936791794
6
+ metadata.gz: d25221ebda9c465da1f09740b10779fd4f4a12886d2c5b87c4096eeb9c3ef3076180e3365140ce8d5ff28afc6709445efae4b7ec8b9fdbae2317d8f4cf5a9ba1
7
+ data.tar.gz: d186b5ead7789373d0a3da5edb8ea11f4f2518e4fdd766c27a79adf315b830cfd95ae3f381543c55b02ba0f3da6ab3431394adcb99949d26b97dcda719de7eee
data/.gitignore CHANGED
@@ -1,15 +1,41 @@
1
- .DS_Store
2
- /.idea/
1
+ ## Documentation cache and generated files:
2
+ /.yardoc/
3
+ /_yardoc/
4
+ /doc/
5
+ /rdoc/
6
+ fastlane/README.md
7
+ fastlane/report.xml
8
+ coverage
9
+ test-results
10
+
11
+ # Ruby
12
+ *.gem
13
+ Gemfile.lock
3
14
  /pkg/
4
- /PageObjects/
5
- /attach/
6
- /Attachments/
7
- /XCResults/
8
- *.lock
9
- *.xcuserdatad
10
- *.png
11
- *.html
12
- port
13
15
  /vendor/
14
- coverage/
15
- test-results/
16
+
17
+ # OSX
18
+ .DS_Store
19
+ .AppleDouble
20
+ .LSOverride
21
+
22
+ # Xcode
23
+ build/
24
+ *.pbxuser
25
+ !default.pbxuser
26
+ *.mode1v3
27
+ !default.mode1v3
28
+ *.mode2v3
29
+ !default.mode2v3
30
+ *.perspectivev3
31
+ !default.perspectivev3
32
+ xcuserdata
33
+ *.xccheckout
34
+ *.moved-aside
35
+ DerivedData
36
+ *.hmap
37
+ *.ipa
38
+ *.xcuserstate
39
+
40
+ # Sonar
41
+ .scannerwork
data/README.md CHANGED
@@ -1,6 +1,4 @@
1
- # XCMonkey
2
-
3
- A tool for doing randomised UI testing of iOS apps 🙈
1
+ *xcmonkey* is a tool for doing randomised UI testing of iOS apps 🐒
4
2
 
5
3
  ## Requirements
6
4
 
@@ -34,3 +32,11 @@ xcmonkey test --udid "30694803-2018-460F-BBA6-97D7911A1AC0" --bundle-id "com.exa
34
32
  ```bash
35
33
  xcmonkey describe -x 10 -y 10 --udid "20694801-2018-460F-BBA6-97D7911A1AC0"
36
34
  ```
35
+
36
+ ## Code of Conduct
37
+
38
+ Help us keep *xcmonkey* open and inclusive. Please read and follow our [Code of Conduct](CODE_OF_CONDUCT.md).
39
+
40
+ ## License
41
+
42
+ This project is licensed under the terms of the MIT license. See the [LICENSE](LICENSE) file.
data/bin/xcmonkey CHANGED
@@ -9,7 +9,7 @@ require_relative '../lib/xcmonkey/version'
9
9
 
10
10
  module Xcmonkey
11
11
  program :version, VERSION
12
- program :description, 'A tool for doing randomised UI testing of iOS apps'
12
+ program :description, 'xcmonkey is a tool for doing randomised UI testing of iOS apps'
13
13
 
14
14
  command :test do |c|
15
15
  c.syntax = 'xcmonkey test [options]'
data/fastlane/Fastfile CHANGED
@@ -8,7 +8,7 @@ lane :release do
8
8
  set_github_release(
9
9
  repository_name: 'alteral/xcmonkey',
10
10
  api_token: ENV.fetch("GITHUB_TOKEN", nil),
11
- name: "XCMonkey v#{version}",
11
+ name: "xcmonkey v#{version}",
12
12
  tag_name: "v#{version}",
13
13
  description: "v#{version}",
14
14
  commitish: git_branch,
@@ -1,4 +1,4 @@
1
1
  module Xcmonkey
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  GEM_NAME = 'xcmonkey'
4
4
  end
data/xcmonkey.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["alteral"]
9
9
  spec.email = ["a.alterpesotskiy@mail.ru"]
10
10
 
11
- spec.summary = "A tool for doing randomised UI testing of iOS apps"
11
+ spec.summary = "xcmonkey is a tool for doing randomised UI testing of iOS apps"
12
12
  spec.homepage = "https://github.com/alteral/xcmonkey"
13
13
  spec.license = "MIT"
14
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcmonkey
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - alteral
@@ -266,5 +266,5 @@ requirements: []
266
266
  rubygems_version: 3.3.7
267
267
  signing_key:
268
268
  specification_version: 4
269
- summary: A tool for doing randomised UI testing of iOS apps
269
+ summary: xcmonkey is a tool for doing randomised UI testing of iOS apps
270
270
  test_files: []