fastlane-plugin-check_good_version 0.1.7 → 1.0.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d386761486bef3b323598ec257bce0c7e610d76
|
|
4
|
+
data.tar.gz: '08c3e304d96aca5163cc52eeae01f2d4fa5007b8'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 243df873aea3d5374132029f5470ac42b184edd6b783bb29a071b622741c3b74b09deb7e1013a213a8697c2c20a83f0975c4e835972e7f540bcac292805924a5
|
|
7
|
+
data.tar.gz: d95cc495f2bf3d3bf0ae559c5b34d17896dec505c9e7e483b13a362778343f1d13125770b87c8bbb00e8a2bacd165b9c80c870d7cb166cfc3f12a779eb6d4db5
|
data/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2016 Lyndsey Ferguson <
|
|
3
|
+
Copyright (c) 2016 Lyndsey Ferguson <ldf.public+github@outlook.com>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
|
@@ -1,48 +1,3 @@
|
|
|
1
1
|
# check_good_version plugin
|
|
2
2
|
|
|
3
|
-
[
|
|
4
|
-
|
|
5
|
-
## Getting Started
|
|
6
|
-
|
|
7
|
-
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-check_good_version`, add it to your project by running:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
fastlane add_plugin check_good_version
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
## About check_good_version
|
|
14
|
-
|
|
15
|
-
Checks the version of the installed Good framework
|
|
16
|
-
|
|
17
|
-
## Example
|
|
18
|
-
|
|
19
|
-
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
|
20
|
-
|
|
21
|
-
## Run tests for this plugin
|
|
22
|
-
|
|
23
|
-
To run both the tests, and code style validation, run
|
|
24
|
-
|
|
25
|
-
```
|
|
26
|
-
rake
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
To automatically fix many of the styling issues, use
|
|
30
|
-
```
|
|
31
|
-
rubocop -a
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## Issues and Feedback
|
|
35
|
-
|
|
36
|
-
For any other issues and feedback about this plugin, please submit it to this repository.
|
|
37
|
-
|
|
38
|
-
## Troubleshooting
|
|
39
|
-
|
|
40
|
-
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md) doc in the main `fastlane` repo.
|
|
41
|
-
|
|
42
|
-
## Using `fastlane` Plugins
|
|
43
|
-
|
|
44
|
-
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md).
|
|
45
|
-
|
|
46
|
-
## About `fastlane`
|
|
47
|
-
|
|
48
|
-
`fastlane` is the easiest way to automate building and releasing your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
|
3
|
+
This has been replaced by the `blackberry_mam_version` action from the [blackberry_mam plugin](https://github.com/lyndsey-ferguson/blackberry_mam)
|
|
@@ -47,6 +47,14 @@ module Fastlane
|
|
|
47
47
|
["lyndsey-ferguson/ldferguson"]
|
|
48
48
|
end
|
|
49
49
|
|
|
50
|
+
def self.deprecated_notes
|
|
51
|
+
"This action is deprecated in favor of the blackberry_mam_version action from the blackberry_mam plugin"
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def self.category
|
|
55
|
+
:deprecated
|
|
56
|
+
end
|
|
57
|
+
|
|
50
58
|
def self.is_supported?(platform)
|
|
51
59
|
[:ios, :mac].include?(platform)
|
|
52
60
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-check_good_version
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lyndsey Ferguson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -81,7 +81,7 @@ dependencies:
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: 1.99.0
|
|
83
83
|
description:
|
|
84
|
-
email:
|
|
84
|
+
email: ldf.public+github@outlook.com
|
|
85
85
|
executables: []
|
|
86
86
|
extensions: []
|
|
87
87
|
extra_rdoc_files: []
|
|
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
112
|
version: '0'
|
|
113
113
|
requirements: []
|
|
114
114
|
rubyforge_project:
|
|
115
|
-
rubygems_version: 2.
|
|
115
|
+
rubygems_version: 2.6.11
|
|
116
116
|
signing_key:
|
|
117
117
|
specification_version: 4
|
|
118
118
|
summary: Checks the version of the installed Good framework
|