fastlane-plugin-version 0.1.0 → 0.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca4743f8efa7003bc373c977a51f1c963aa1683009c4a711ea525a296fb71a24
|
|
4
|
+
data.tar.gz: e2cc84e073494a67e7fe778942420e790471550abdbcc8bf812d0842de6ee48b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a15654668ab7bac7833e909188d17a452959a066cc3ca8ee020ed6a8e074d344d5732f53323d0ed0584efb4a53b97bff323368865f9415c5402875142360a912
|
|
7
|
+
data.tar.gz: 746139541485425764aaf3448da1a00d9f138846f491d59ec9e395f0909cafad60811e15ccf30470ce60c49e8c3f9442ba30f2ca9583a4b2f4dde280d4f7c770
|
data/README.md
CHANGED
|
@@ -14,7 +14,7 @@ fastlane add_plugin version
|
|
|
14
14
|
|
|
15
15
|
## About fastlane-plugin-version
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Set version.
|
|
18
18
|
|
|
19
19
|
## Example
|
|
20
20
|
|
|
@@ -22,16 +22,16 @@ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plu
|
|
|
22
22
|
|
|
23
23
|
```ruby
|
|
24
24
|
lane :test do
|
|
25
|
-
|
|
25
|
+
set_version(
|
|
26
26
|
plist: "path/to/Info.plist",
|
|
27
27
|
version: "1.0.0",
|
|
28
28
|
build_version: 1234
|
|
29
29
|
)
|
|
30
|
-
|
|
30
|
+
set_version(
|
|
31
31
|
plist: "path/to/Info.plist",
|
|
32
32
|
version: "1.0.0"
|
|
33
33
|
)
|
|
34
|
-
|
|
34
|
+
set_version(
|
|
35
35
|
plist: "path/to/Info.plist",
|
|
36
36
|
build_version: 1234
|
|
37
37
|
)
|
|
@@ -2,7 +2,7 @@ require "fastlane/action"
|
|
|
2
2
|
|
|
3
3
|
module Fastlane
|
|
4
4
|
module Actions
|
|
5
|
-
class
|
|
5
|
+
class SetVersionAction < Action
|
|
6
6
|
def self.run(params)
|
|
7
7
|
plist = params[:plist]
|
|
8
8
|
version = params[:version]
|
|
@@ -25,7 +25,7 @@ module Fastlane
|
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def self.description
|
|
28
|
-
"
|
|
28
|
+
"Set version"
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
def self.authors
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-version
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Nam
|
|
@@ -145,7 +145,7 @@ files:
|
|
|
145
145
|
- LICENSE
|
|
146
146
|
- README.md
|
|
147
147
|
- lib/fastlane/plugin/version.rb
|
|
148
|
-
- lib/fastlane/plugin/version/actions/
|
|
148
|
+
- lib/fastlane/plugin/version/actions/set_version_action.rb
|
|
149
149
|
- lib/fastlane/plugin/version/version.rb
|
|
150
150
|
homepage: https://github.com/jasonnam/fastlane-plugin-version
|
|
151
151
|
licenses:
|
|
@@ -169,5 +169,5 @@ requirements: []
|
|
|
169
169
|
rubygems_version: 3.0.3
|
|
170
170
|
signing_key:
|
|
171
171
|
specification_version: 4
|
|
172
|
-
summary:
|
|
172
|
+
summary: Set version
|
|
173
173
|
test_files: []
|