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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d9bef89860b49558a470bf73ffdc005f33cfc535
4
- data.tar.gz: ad6bc0f04748b45941f4f76ecbbacc03e7c732f8
3
+ metadata.gz: 3273627d9d9a0294d2395e0dd96594c277abcda8
4
+ data.tar.gz: 5a41fb09eafaa592f5409dfd2a85496c7cf72772
5
5
  SHA512:
6
- metadata.gz: e1b942e066aed99e69f8748a695c68df741c8b26058623eab31ed788a6fdd5e6fd3fd328e5416546b6c69d98108fa1c1deb64c7cbde873417b86b063490c31ba
7
- data.tar.gz: 8225c934af8bf892d8cd68646d86b186f63003c28a2b3421661917a93db46118c868227951b0b57daf6ff64b5e650f2afae928ebdd42e23de3aaf09eb3497edc
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
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Fastlane
3
4
  module Helper
4
5
  class UpdateXcodeprojHelper
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Fastlane
3
4
  module UpdateXcodeproj
4
- VERSION = "0.1.2"
5
+ VERSION = "1.0"
5
6
  end
6
7
  end
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'fastlane/plugin/update_xcodeproj/version'
3
4
 
4
5
  module Fastlane
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: 0.1.2
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: 2016-09-16 00:00:00.000000000 Z
11
+ date: 2017-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry