fastlane-plugin-act 1.2.0 → 1.2.1
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.md +8 -0
- data/lib/fastlane/plugin/act/helper/file_patcher.rb +1 -1
- data/lib/fastlane/plugin/act/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a49a875e93803892cc82bb33660dd040c797651
|
|
4
|
+
data.tar.gz: f69bd2cfc82b48a5bec5d99efe6cf07b3036c662
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5b8fbaf18d8a5c0bc7dfe17e66ce2758410941d266713c47671a256951a223c4905934ea297a74ccb47ac74e511bfb23b844b7c47972f2dc35a4531e4f6bb53
|
|
7
|
+
data.tar.gz: 3ca47b93ad65ab62e8d3a029d89a8756a8e7c4ac1bb1cebccd058fb3ca883a68e6e38ee06065e0841673fa5007df5c87869b0a9ea1b208e6e4baf6b7136b547a
|
data/README.md
CHANGED
|
@@ -126,3 +126,11 @@ For more information about how the `fastlane` plugin system works, check out the
|
|
|
126
126
|
## About `fastlane`
|
|
127
127
|
|
|
128
128
|
`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).
|
|
129
|
+
|
|
130
|
+
## Contributors
|
|
131
|
+
|
|
132
|
+
Many thanks to the members of the community that have contributed PRs to this project:
|
|
133
|
+
|
|
134
|
+
* [kimdv](https://github.com/kimdv)
|
|
135
|
+
* [dalsgaard](https://github.com/dalsgaard)
|
|
136
|
+
|
|
@@ -8,7 +8,7 @@ module Fastlane
|
|
|
8
8
|
relative_path = ActHelper::ArchivePaths.expand(archive, old_file)
|
|
9
9
|
local_path = archive.local_path(relative_path)
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
`mkdir -p #{File.dirname(local_path).shellescape}`
|
|
12
12
|
`cp #{new_file.shellescape} #{local_path.shellescape}`
|
|
13
13
|
archive.replace(relative_path)
|
|
14
14
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-act
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Richard Szalay
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|
|
@@ -135,5 +135,5 @@ rubyforge_project:
|
|
|
135
135
|
rubygems_version: 2.5.1
|
|
136
136
|
signing_key:
|
|
137
137
|
specification_version: 4
|
|
138
|
-
summary: Applies changes to plists and app icons inside a compiled IPA
|
|
138
|
+
summary: Applies changes to plists and app icons inside a compiled IPA or xcarchive
|
|
139
139
|
test_files: []
|