xcake 0.4.3 → 0.4.4

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: c390a506126ea8233bab44f9da233b65a57f6b73
4
- data.tar.gz: fa4b1a11af1b243a828eaa113e48f8e66f1df93d
3
+ metadata.gz: 0f1ea91d368e8662575a8dcd062a21661b4d26f6
4
+ data.tar.gz: 3b6e113996c802940a72336b606df79aee285f44
5
5
  SHA512:
6
- metadata.gz: 5671cd6ee001895d1b186bb626173fcaf195dcb53736ee35454c6520cf21dfe5f762cbd87bae985d5abbadf3d7d5067ab665550260b3c171dcda5aaff4065a18
7
- data.tar.gz: b7df745c91bb7c89bb5ad50e8b3b08ec1fbb255ca1d694ac9dd376eb909cf1a28dac94de110c6d116a3a976578267d2b3e2946a44d72756f9346c0a8f80abbb6
6
+ metadata.gz: 047533ecab7a56bea0277ab2d647a05c8ff3f70ea77707baf0a5e719408e1ea32d093208f7b61316cc6e1a1b51f7b8ba50cd9dfd4e970b7473927b8a089e65bd
7
+ data.tar.gz: f2af8d9983089d07242c8a514705de49a4e9cbd445e62a863429b09838d1cc710d6fce9317a6acdda065d72e7c07f1c0c756c525df6ed5361d93cd8c705e2120
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
+ v0.4.4
2
+ ======
3
+ - Correctly registers `.xcdatamodeld` build phase generator.
4
+
1
5
  v0.4.3
2
6
  ======
3
- - Correctly adds `.xcdatamodeld` files to a project.
7
+ - Correctly containing `.xcdatamodeld` files to a project, rather than the
8
+ internal `.xcdatamodel`.
4
9
 
5
10
  v0.4.2
6
11
  ======
@@ -27,9 +32,11 @@ v0.3.0
27
32
 
28
33
  v0.2.0
29
34
  ======
30
- - Now adds `--version` flag to command line, to allow you to find out Xcake's version.
31
- - Brings naming of default build configurations closer to Xcode's, so that it works with existing build scripts.
32
- - Adds support for Watch OS 2 Applications
35
+ - Now adds `--version` flag to command line, to allow you to find out Xcake's
36
+ version.
37
+ - Brings naming of default build configurations closer to Xcode's, so that it
38
+ works with existing build scripts.
39
+ - Adds support for Watch OS 2 Applications.
33
40
 
34
41
  v0.1.9
35
42
  ======
@@ -55,8 +62,8 @@ v0.1.5
55
62
  v0.1.4
56
63
  ======
57
64
  - Removes references to "build_configurations" to just "configuration".
58
- to make syntax shorter and to reflect the fact it's an abstraction and not directly
59
- a Xcode build configuration.
65
+ to make syntax shorter and to reflect the fact it's an abstraction
66
+ and not directly a Xcode build configuration.
60
67
 
61
68
  v0.1.3
62
69
  ======
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcake (0.4.3)
4
+ xcake (0.4.4)
5
5
  claide (~> 0.9.1)
6
6
  hooks (~> 0.4.1)
7
7
  tty (~> 0.3.2)
@@ -15,6 +15,7 @@ module Xcake
15
15
  def self.build_phase_generators
16
16
  [
17
17
  CompileSourceBuildPhase,
18
+ CompileXCDataModeldBuildPhase,
18
19
  HeaderFileBuildPhase,
19
20
  CopyXCAssetsBuildPhase,
20
21
  CopyResourcesBuildPhase
data/lib/xcake/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Xcake
2
- VERSION = "0.4.3"
2
+ VERSION = "0.4.4"
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.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Campbell