fastlane-plugin-update_xcodeproj 0.1.1 → 0.1.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9bef89860b49558a470bf73ffdc005f33cfc535
|
4
|
+
data.tar.gz: ad6bc0f04748b45941f4f76ecbbacc03e7c732f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1b942e066aed99e69f8748a695c68df741c8b26058623eab31ed788a6fdd5e6fd3fd328e5416546b6c69d98108fa1c1deb64c7cbde873417b86b063490c31ba
|
7
|
+
data.tar.gz: 8225c934af8bf892d8cd68646d86b186f63003c28a2b3421661917a93db46118c868227951b0b57daf6ff64b5e650f2afae928ebdd42e23de3aaf09eb3497edc
|
data/README.md
CHANGED
@@ -2,6 +2,13 @@
|
|
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-update_xcodeproj)
|
4
4
|
|
5
|
+
[![Gem Version](https://badge.fury.io/rb/fastlane-plugin-update_xcodeproj.svg)](https://badge.fury.io/rb/fastlane-plugin-update_xcodeproj)
|
6
|
+
[![CircleCI](https://circleci.com/gh/nafu/fastlane-plugin-update_xcodeproj.svg?style=svg)](https://circleci.com/gh/nafu/fastlane-plugin-update_xcodeproj)
|
7
|
+
[![Code Climate](https://codeclimate.com/github/nafu/fastlane-plugin-update_xcodeproj/badges/gpa.svg)](https://codeclimate.com/github/nafu/fastlane-plugin-update_xcodeproj)
|
8
|
+
[![Coverage Status](https://coveralls.io/repos/github/nafu/fastlane-plugin-update_xcodeproj/badge.svg?branch=master)](https://coveralls.io/github/nafu/fastlane-plugin-update_xcodeproj?branch=master)
|
9
|
+
[![Dependency Status](https://gemnasium.com/badges/github.com/nafu/fastlane-plugin-update_xcodeproj.svg)](https://gemnasium.com/github.com/nafu/fastlane-plugin-update_xcodeproj)
|
10
|
+
[![Inline docs](http://inch-ci.org/github/nafu/fastlane-plugin-update_xcodeproj.svg?branch=master)](http://inch-ci.org/github/nafu/fastlane-plugin-update_xcodeproj)
|
11
|
+
|
5
12
|
## Getting Started
|
6
13
|
|
7
14
|
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-update_xcodeproj`, add it to your project by running:
|
@@ -11,7 +11,7 @@ module Fastlane
|
|
11
11
|
|
12
12
|
options.each do |key, value|
|
13
13
|
configs = project.objects.select { |obj| obj.isa == 'XCBuildConfiguration' && !obj.build_settings[key.to_s].nil? }
|
14
|
-
UI.user_error!("
|
14
|
+
UI.user_error!("Xcodeproj does not use #{key}") if configs.count.zero?
|
15
15
|
|
16
16
|
configs.each do |c|
|
17
17
|
c.build_settings[key.to_s] = value
|
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.
|
4
|
+
version: 0.1.2
|
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-
|
11
|
+
date: 2016-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -94,6 +94,20 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: 1.102.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: coveralls
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
97
111
|
description:
|
98
112
|
email: nakamurafumiya003@gmail.com
|
99
113
|
executables: []
|