fastlane-plugin-update_xcodeproj 0.1.2 → 1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -2
- data/lib/fastlane/plugin/update_xcodeproj/actions/update_xcodeproj_action.rb +1 -4
- data/lib/fastlane/plugin/update_xcodeproj/helper/update_xcodeproj_helper.rb +1 -0
- data/lib/fastlane/plugin/update_xcodeproj/version.rb +2 -1
- data/lib/fastlane/plugin/update_xcodeproj.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3273627d9d9a0294d2395e0dd96594c277abcda8
|
4
|
+
data.tar.gz: 5a41fb09eafaa592f5409dfd2a85496c7cf72772
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24f7dabfd63b8c2ba16626a0867b167ad00ec0fd15c59bbac12b065d047c123f2d0025295bf88959a153215775bf4956cf180fedd9f84c5defc859cf11f7f969
|
7
|
+
data.tar.gz: 20f01cf0cec08ac4548fa53b38d597ccc246cc2d6ca5aa7c2be6f0cc37db7dba114072a31e855ddfa1663d0bc2b1713af10ba94b70c5904905a11cf95348bef5
|
data/README.md
CHANGED
@@ -36,8 +36,6 @@ update_xcodeproj(
|
|
36
36
|
|
37
37
|
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`.
|
38
38
|
|
39
|
-
**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)
|
40
|
-
|
41
39
|
## Run tests for this plugin
|
42
40
|
|
43
41
|
To run both the tests, and code style validation, run
|
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
module Fastlane
|
3
4
|
module Actions
|
4
5
|
class UpdateXcodeprojAction < Action
|
@@ -52,11 +53,7 @@ module Fastlane
|
|
52
53
|
end
|
53
54
|
|
54
55
|
def self.is_supported?(platform)
|
55
|
-
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
56
|
-
# See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
|
57
|
-
#
|
58
56
|
[:ios, :mac].include?(platform)
|
59
|
-
true
|
60
57
|
end
|
61
58
|
end
|
62
59
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-update_xcodeproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: '1.0'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fumiya Nakamura
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|