fastlane-plugin-update_xcodeproj 0.1.1 → 0.1.2

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: 3f68541842c459c6e5e6000c22cd645849a32432
4
- data.tar.gz: f94d254f95aa8162a005eabd4228c37692feec6a
3
+ metadata.gz: d9bef89860b49558a470bf73ffdc005f33cfc535
4
+ data.tar.gz: ad6bc0f04748b45941f4f76ecbbacc03e7c732f8
5
5
  SHA512:
6
- metadata.gz: 7ff84af16f45d1ffe6a1f780838c3230468eec2325d052a2d422508b472b52aa68b1e5b343bdabcde3e063e385a140ed39f002496fa1c5417e31be39f97a82f5
7
- data.tar.gz: b4826cc27d6ec4138be72df47b50fc12403775c354092808179af88eee1c203495c81fb9b74ac8fd9213bb9a49743a1323d23382225292ccc1a7289fb244b45c
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!("Info plist uses $(#{value}), but xcodeproj does not") unless configs.count.positive?
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
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Fastlane
3
3
  module UpdateXcodeproj
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
6
6
  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: 0.1.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-15 00:00:00.000000000 Z
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: []