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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3b9cd3cf90299ce246e605f6e9289c1b16fdda6
4
- data.tar.gz: 0d3a2e2bb61de9a9c3d70df9e79176ebd9bc4668
3
+ metadata.gz: 4e1e0bee85a73559a786f161dae75f8338c95118
4
+ data.tar.gz: 0910e7d9739e35d6bc942b2d452820f9ad7767d0
5
5
  SHA512:
6
- metadata.gz: f248e196864be1d32f4a7fcaea3eb9851e9c62a828287fe4d8d81b2bcfff8c8cad6fcdb965da98a898e86da8c2b7101d7a6e2bfd59a48460c18defc0ac2bba58
7
- data.tar.gz: d35c7b9f40a373785e831a6cabee223e6f8061bb25318f2ada019f7e4eb2313dc64218cd9c294a3f7deeb977cd29279e83a3f6cfb8d893284b2e1401ea44fef8
6
+ metadata.gz: 04fa237a1b45cc38f949866c0b7132b38ea3178b7b783bbe9af2569d1b5bc76c01dbfb07620cd72abc1a97a5a871c97b7dcdc2082eda227fda231be6bd72299e
7
+ data.tar.gz: 3f069a48e5aea5d89fe04c3b0dc1af43d136f1e699756fbe360fa4c654cd6851260145dafc88c20be976786dcd3a2e3bc8fb5f75d126ae110b8ac091ac916382
@@ -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
  ======
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcake (0.5.2)
4
+ xcake (0.5.3)
5
5
  claide (~> 0.9.1)
6
6
  hooks (~> 0.4.1)
7
7
  tty (~> 0.3.2)
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> &bull;
24
24
  <a href="#installation">Installation</a> &bull;
25
25
  <a href="#need-help">Need help?</a> &bull;
26
- <a href="http://www.rubydoc.info/gems/xcake/file/docs/Getting%20Started.md">Documentation</a>
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 bake
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 bake`
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 bake
93
+ xcake make
94
94
 
95
95
  Xcake will then generate a Xcode project based on your Cakefile
96
96
 
@@ -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 bake` 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.
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 bake` again, we get the same project file but now with a target. In addition to this
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 bake` and voilla! Pretty easy but now if we open up our project
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.
@@ -4,7 +4,7 @@ module Xcake
4
4
  class Command < CLAide::Command
5
5
 
6
6
  require "xcake/command/init"
7
- require "xcake/command/bake"
7
+ require "xcake/command/make"
8
8
 
9
9
  self.abstract_command = true
10
10
  self.command = "xcake"
@@ -1,6 +1,6 @@
1
1
  module Xcake
2
2
  class Command
3
- class Bake < Command
3
+ class Make < Command
4
4
  self.summary = "Makes the Xcode project from a Cakefile"
5
5
  self.description = "Makes the Xcode project from a Cakefile"
6
6
 
@@ -1,3 +1,3 @@
1
1
  module Xcake
2
- VERSION = "0.5.2"
2
+ VERSION = "0.5.3"
3
3
  end
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.2
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