fastlane-plugin-unsetinfoplistvalue 0.1.0 → 0.1.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ef6e0ffcbe8afeb8919f05e97ecc416ef9a2376
|
4
|
+
data.tar.gz: ae15988e0b642d38614fbd53ff61aa36ac205aff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de19311de30fb42516cf8b588039d1f4c85e91befd944ed6dc07d5b114351b7253f577b83d7ad820322c1ffadcbcd4798edc5ee89f8b717806bc5159d2df96ed
|
7
|
+
data.tar.gz: 35b657fa1e8b33c72c3c0dac48a9f5ead863e91e0c7ac43ae0553ff3fe67539be313f343a0b4d825e9b8b1190fc382c66982d2a5b24e581cf15b122e0ab47b11
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# unset_info_plist_value plugin
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-unsetinfoplistvalue)
|
4
4
|
|
@@ -7,21 +7,17 @@
|
|
7
7
|
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-unsetinfoplistvalue`, add it to your project by running:
|
8
8
|
|
9
9
|
```bash
|
10
|
-
fastlane add_plugin
|
10
|
+
fastlane add_plugin unset_info_plist_value
|
11
11
|
```
|
12
12
|
|
13
|
-
## About
|
13
|
+
## About unset_info_plist_value
|
14
14
|
|
15
15
|
Unsets value to Info.plist of your project as native Ruby data structures
|
16
16
|
|
17
|
-
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
|
18
|
-
|
19
17
|
## Example
|
20
18
|
|
21
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`.
|
22
20
|
|
23
|
-
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
24
|
-
|
25
21
|
## Run tests for this plugin
|
26
22
|
|
27
23
|
To run both the tests, and code style validation, run
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'fastlane/plugin/unsetinfoplistvalue/version'
|
2
2
|
|
3
3
|
module Fastlane
|
4
|
-
module
|
4
|
+
module Unsetinfoplistvaluex
|
5
5
|
# Return all .rb files inside the "actions" and "helper" directory
|
6
6
|
def self.all_classes
|
7
7
|
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-unsetinfoplistvalue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Cordero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -128,14 +128,14 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - ">="
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 2.
|
131
|
+
version: 2.165.0
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 2.
|
138
|
+
version: 2.165.0
|
139
139
|
description:
|
140
140
|
email: david@corderoramirez.com
|
141
141
|
executables: []
|
@@ -145,7 +145,7 @@ files:
|
|
145
145
|
- LICENSE
|
146
146
|
- README.md
|
147
147
|
- lib/fastlane/plugin/unsetinfoplistvalue.rb
|
148
|
-
- lib/fastlane/plugin/unsetinfoplistvalue/actions/
|
148
|
+
- lib/fastlane/plugin/unsetinfoplistvalue/actions/unsetinfoplistvalue_action.rb
|
149
149
|
- lib/fastlane/plugin/unsetinfoplistvalue/helper/unsetinfoplistvalue_helper.rb
|
150
150
|
- lib/fastlane/plugin/unsetinfoplistvalue/version.rb
|
151
151
|
homepage: https://github.com/zattoo/fastlane-plugin-unsetinfoplistvalue
|