xcake 0.6.18 → 0.6.19

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: e9fa64fc3e5688ffe06e68dde76ed70850c531df
4
- data.tar.gz: 64893ef4b3ad285f765f37a0cea26263b5aabd08
3
+ metadata.gz: b6a20b9a1ed07a07a5d8f0120654dbd3fb3039ea
4
+ data.tar.gz: f605d186b78d8e598b2a91cf254a007610daf672
5
5
  SHA512:
6
- metadata.gz: 242bd5d74a21f67cb9c88570ec2babec379f7232834c0f0bb38860775004f123ae9bf81ee6770446d1ee5ae5f05affd64881e116d6c955a4f8cfee7e4bc4ee54
7
- data.tar.gz: 1e7d66955a0bb3f8cf8d242e9873cb40fdb986df252cc48888e1d979c9894c7d31383017b87182c8a64f62386ac10876c93e4bcdf6bfa2afadd48ea258cd7f5f
6
+ metadata.gz: 9a9ac89d9458724f4765bac32db2150e19f35c90a1e36e0908d82306e93e6fded9e8f39324eaaa43bfef53e173fe6afdf88ba2ff3d2ab0cfac6fb2bb56b781d0
7
+ data.tar.gz: 518834da68df9c79b9a2633bbaa8af13b1bdbbabbc273192a6ccc9fbe93c102ac86bc8e2f2f50456925bce8c7becab392ade7f9babb11d3eb1889a80ee687b8f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ v0.6.19
2
+ =======
3
+ - Uses the reccomended code signing settings from Apple.
4
+
1
5
  v0.6.18
2
6
  =======
3
7
  - Fixes cases where xcode would complain about embedded products weren't
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcake (0.6.18)
4
+ xcake (0.6.19)
5
5
  claide (>= 0.9.1, < 2.0)
6
6
  hooks (~> 0.4.1)
7
7
  molinillo
data/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  [![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/LICENSE)
5
5
  [![Build Status](https://img.shields.io/travis/jcampbell05/xcake/master.svg?style=flat)](https://travis-ci.org/jcampbell05/xcake)
6
6
  [![Test Coverage](https://img.shields.io/coveralls/jcampbell05/xcake/master.svg)](https://coveralls.io/github/jcampbell05/xcake)
7
+ [![Gem](https://raw.githubusercontent.com/fastlane/fastlane/master/fastlane/lib/fastlane/plugins/templates/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-xcake)
7
8
 
8
9
  ###Xcode projects made a piece of cake.
9
10
 
@@ -1 +1,31 @@
1
- An experimental fastlane plugin
1
+ # xcake `fastlane` Plugin
2
+
3
+ [![Gem](https://raw.githubusercontent.com/fastlane/fastlane/master/fastlane/lib/fastlane/plugins/templates/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-xcake)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with fastlane-plugin-xcake, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin xcake
11
+ ```
12
+
13
+ ## About xcake
14
+
15
+ Generate project using `xcake make`.
16
+
17
+ ## Issues and Feedback
18
+
19
+ For any other issues and feedback about this plugin, please submit it to this repository.
20
+
21
+ ## Troubleshooting
22
+
23
+ For some more detailed help with plugins problems, check out the [Plugins Troubleshooting](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md) doc in the main `fastlane` repo.
24
+
25
+ ## Using `fastlane` Plugins
26
+
27
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md) in the main `fastlane` repo.
28
+
29
+ ## About `fastlane`
30
+
31
+ `fastlane` automates building, testing, and releasing your app for beta and app store distributions. To learn more about `fastlane`, check out [fastlane.tools](https://fastlane.tools).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/lib/xcake/target.rb CHANGED
@@ -250,19 +250,13 @@ module Xcake
250
250
  end
251
251
 
252
252
  def default_release_settings
253
- release_settings = {
254
- "CODE_SIGN_IDENTITY" => "iPhone Distribution",
255
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" => "iPhone Distribution"
256
- }
257
-
258
253
  Xcodeproj::Project::ProjectHelper.
259
254
  common_build_settings(:release,
260
255
  platform,
261
256
  deployment_target.to_s,
262
257
  type,
263
258
  language).
264
- merge!(default_settings).
265
- merge!(release_settings)
259
+ merge!(default_settings)
266
260
  end
267
261
  end
268
262
  end
data/lib/xcake/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Xcake
2
- VERSION = "0.6.18".freeze
2
+ VERSION = "0.6.19".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.18
4
+ version: 0.6.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Campbell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-27 00:00:00.000000000 Z
11
+ date: 2016-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -223,6 +223,7 @@ files:
223
223
  - fastlane-plugin-xcake/Gemfile
224
224
  - fastlane-plugin-xcake/LICENSE
225
225
  - fastlane-plugin-xcake/README.md
226
+ - fastlane-plugin-xcake/Rakefile
226
227
  - fastlane-plugin-xcake/fastlane-plugin-xcake.gemspec
227
228
  - fastlane-plugin-xcake/lib/fastlane/plugin/xcake.rb
228
229
  - fastlane-plugin-xcake/lib/fastlane/plugin/xcake/actions/xcake_action.rb