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: 193ccf1744d3feb9b96344fea269fda199c2f14d
4
- data.tar.gz: 8361567e480ffdae8f9bff7809f7f719f7d7487b
3
+ metadata.gz: 4ef6e0ffcbe8afeb8919f05e97ecc416ef9a2376
4
+ data.tar.gz: ae15988e0b642d38614fbd53ff61aa36ac205aff
5
5
  SHA512:
6
- metadata.gz: 3039ff0ad09047ba9749505ab9ea5b8f97a53e51dd68c08b424e7d3f6b78b0addf8d254b1cc9285805f254b7bc7abdeb5e14d65021bb4142bce370fb33c348c7
7
- data.tar.gz: b51839dd345cb6d9c96bdbbf0f6cad6e2ecf5296ed6a18d9d283c6d3e15d10a3a7669e07db094430109883f72f65b0ba3859ad5455b81864d1010db2e6f46858
6
+ metadata.gz: de19311de30fb42516cf8b588039d1f4c85e91befd944ed6dc07d5b114351b7253f577b83d7ad820322c1ffadcbcd4798edc5ee89f8b717806bc5159d2df96ed
7
+ data.tar.gz: 35b657fa1e8b33c72c3c0dac48a9f5ead863e91e0c7ac43ae0553ff3fe67539be313f343a0b4d825e9b8b1190fc382c66982d2a5b24e581cf15b122e0ab47b11
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # unsetinfoplistvalue plugin
1
+ # unset_info_plist_value plugin
2
2
 
3
3
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](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 unsetinfoplistvalue
10
+ fastlane add_plugin unset_info_plist_value
11
11
  ```
12
12
 
13
- ## About unsetinfoplistvalue
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 Unsetinfoplistvalue
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__))]
@@ -3,7 +3,7 @@ require_relative '../helper/unsetinfoplistvalue_helper'
3
3
 
4
4
  module Fastlane
5
5
  module Actions
6
- class UnsetinfoplistvalueAction < Action
6
+ class UnsetInfoPlistValueAction < Action
7
7
  def self.run(params)
8
8
  require 'plist'
9
9
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Unsetinfoplistvalue
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
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.0
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-10-26 00:00:00.000000000 Z
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.162.0
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.162.0
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/unset_info_plist_value_action.rb
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