xcake 0.5.2 → 0.5.3
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 +5 -1
- data/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/docs/Getting Started.md +3 -3
- data/lib/xcake/command.rb +1 -1
- data/lib/xcake/command/{bake.rb → make.rb} +1 -1
- data/lib/xcake/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e1e0bee85a73559a786f161dae75f8338c95118
|
4
|
+
data.tar.gz: 0910e7d9739e35d6bc942b2d452820f9ad7767d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04fa237a1b45cc38f949866c0b7132b38ea3178b7b783bbe9af2569d1b5bc76c01dbfb07620cd72abc1a97a5a871c97b7dcdc2082eda227fda231be6bd72299e
|
7
|
+
data.tar.gz: 3f069a48e5aea5d89fe04c3b0dc1af43d136f1e699756fbe360fa4c654cd6851260145dafc88c20be976786dcd3a2e3bc8fb5f75d126ae110b8ac091ac916382
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,11 @@
|
|
1
|
+
v0.5.3
|
2
|
+
======
|
3
|
+
- Updates `xcake bake` to more generic `xcake make` (Thanks to @roger-tan).
|
4
|
+
|
1
5
|
v0.5.2
|
2
6
|
======
|
3
7
|
- Updates `xcake init` for new project syntax.
|
4
|
-
- Adds shorthand build configuration syntax for projects which only contain one debug or release configuration.
|
8
|
+
- Adds shorthand build configuration syntax for projects which only contain one debug or release configuration (Thanks to @colinta).
|
5
9
|
|
6
10
|
v0.5.1
|
7
11
|
======
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -23,7 +23,7 @@ Get in contact with the developer on Twitter: [@jcampbell_05](https://twitter.co
|
|
23
23
|
<a href="#features">Features</a> •
|
24
24
|
<a href="#installation">Installation</a> •
|
25
25
|
<a href="#need-help">Need help?</a> •
|
26
|
-
<a href="http://www.rubydoc.info/
|
26
|
+
<a href="http://www.rubydoc.info/github/jcampbell05/xcake/master/file/docs/Getting%20Started.md">Documentation</a>
|
27
27
|
</p>
|
28
28
|
|
29
29
|
-------
|
@@ -45,7 +45,7 @@ end
|
|
45
45
|
To generate the xcode project, just run:
|
46
46
|
|
47
47
|
```sh
|
48
|
-
xcake
|
48
|
+
xcake make
|
49
49
|
```
|
50
50
|
|
51
51
|
If you would like an example Cakefile for guidence, just run:
|
@@ -58,7 +58,7 @@ xcake init
|
|
58
58
|
--------------------------|------------------------------------------------------------
|
59
59
|
:sparkles: | Flexibly configure and create xcode project from one easy to read `Cakefile`
|
60
60
|
:ship: | Generate from any computer, including a CI-server
|
61
|
-
:thought_balloon: | Never remember any difficult commands, just `xcake
|
61
|
+
:thought_balloon: | Never remember any difficult commands, just `xcake make`
|
62
62
|
:page_with_curl: | Store **everything** but the project in git. Never again manually fix any corruptions or merge issues with the project.
|
63
63
|
:rocket: | Saves you **hours** when working with xcode projects
|
64
64
|
:anchor: | Confidence that the project file is exactly the same during Continuous Delivery
|
@@ -90,7 +90,7 @@ Xcake can create an example cakefile when you run:
|
|
90
90
|
|
91
91
|
Usually you'll use xcake by running the command
|
92
92
|
|
93
|
-
xcake
|
93
|
+
xcake make
|
94
94
|
|
95
95
|
Xcake will then generate a Xcode project based on your Cakefile
|
96
96
|
|
data/docs/Getting Started.md
CHANGED
@@ -14,7 +14,7 @@ so we're going to need some command line magic:
|
|
14
14
|
So we should have a folder called "MyProject" with a textfile named "Cakefile" inside of it,
|
15
15
|
Xcake will look for this textfile, so make sure to keep it's name the same.
|
16
16
|
|
17
|
-
Now, If we run `xcake
|
17
|
+
Now, If we run `xcake make` we should now have our xcode project. *phew* that was easy! If we open it however it's not quite ready to use, it's still lacking any targets to actually build.
|
18
18
|
So let's fix that :)
|
19
19
|
|
20
20
|
We're going to create an app for iOS 9.0 called `MyApp`, hopefully the syntax should be easy to grasp:
|
@@ -25,7 +25,7 @@ application_for :ios, 9.0 do |target|
|
|
25
25
|
end
|
26
26
|
```
|
27
27
|
|
28
|
-
Now if we run `xcake
|
28
|
+
Now if we run `xcake make` again, we get the same project file but now with a target. In addition to this
|
29
29
|
xcake has created a `debug` and `release` build configuration as well as two schemes for our target
|
30
30
|
and these build configurations.
|
31
31
|
|
@@ -43,7 +43,7 @@ application_for :ios, 9.0 do |target|
|
|
43
43
|
end
|
44
44
|
```
|
45
45
|
|
46
|
-
Again we run `xcake
|
46
|
+
Again we run `xcake make` and voilla! Pretty easy but now if we open up our project
|
47
47
|
our `debug` and `release` configurations are gone. Xcake operates an opt-out system, Xcode projects won't open
|
48
48
|
without any configurations so Xcake provides these configurations as a sensible default. But as soon as we
|
49
49
|
provide our own configurations we are opting out of these defaults.
|
data/lib/xcake/command.rb
CHANGED
data/lib/xcake/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Campbell
|
@@ -184,8 +184,8 @@ files:
|
|
184
184
|
- lib/fastlane_plugin.rb
|
185
185
|
- lib/xcake.rb
|
186
186
|
- lib/xcake/command.rb
|
187
|
-
- lib/xcake/command/bake.rb
|
188
187
|
- lib/xcake/command/init.rb
|
188
|
+
- lib/xcake/command/make.rb
|
189
189
|
- lib/xcake/configurable.rb
|
190
190
|
- lib/xcake/configuration.rb
|
191
191
|
- lib/xcake/configuration/proxies/preproccessor_definitions_setting_proxy.rb
|