xcake 0.6.18 → 0.6.19
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -0
- data/fastlane-plugin-xcake/README.md +31 -1
- data/fastlane-plugin-xcake/Rakefile +6 -0
- data/lib/xcake/target.rb +1 -7
- data/lib/xcake/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6a20b9a1ed07a07a5d8f0120654dbd3fb3039ea
|
|
4
|
+
data.tar.gz: f605d186b78d8e598b2a91cf254a007610daf672
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a9ac89d9458724f4765bac32db2150e19f35c90a1e36e0908d82306e93e6fded9e8f39324eaaa43bfef53e173fe6afdf88ba2ff3d2ab0cfac6fb2bb56b781d0
|
|
7
|
+
data.tar.gz: 518834da68df9c79b9a2633bbaa8af13b1bdbbabbc273192a6ccc9fbe93c102ac86bc8e2f2f50456925bce8c7becab392ade7f9babb11d3eb1889a80ee687b8f
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
[](https://github.com/fastlane/fastlane/blob/master/LICENSE)
|
|
5
5
|
[](https://travis-ci.org/jcampbell05/xcake)
|
|
6
6
|
[](https://coveralls.io/github/jcampbell05/xcake)
|
|
7
|
+
[](https://rubygems.org/gems/fastlane-plugin-xcake)
|
|
7
8
|
|
|
8
9
|
###Xcode projects made a piece of cake.
|
|
9
10
|
|
|
@@ -1 +1,31 @@
|
|
|
1
|
-
|
|
1
|
+
# xcake `fastlane` Plugin
|
|
2
|
+
|
|
3
|
+
[](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).
|
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
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.
|
|
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-
|
|
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
|