xcodeproj 0.24.1 → 0.24.2

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: e2ce59e9bc1fcd8555fe5c05da10dd3cb997cfa4
4
- data.tar.gz: b5773e697609ae9a4b497a0f991ca4cd3561bdeb
3
+ metadata.gz: e0a46ef2064b324ff6ee0d24bd8a1ae28a15971e
4
+ data.tar.gz: bd72f7b2fb29d2e7debebcb50f697212c74b9a7f
5
5
  SHA512:
6
- metadata.gz: 16c8cb156aa7c9bf1719aa6c8c4635988b5ac815791247cfb4dbd128d466a219bddc04796f319ef04134f4a967b037e6f15ab5f6de2d1919b30e5a3a6b7d3d37
7
- data.tar.gz: 7cb2a84fa807b7ea112a83595d57381e0271b1bfdf6c9ef08590d3d961bb40744daffb2492d337034091c9a87f784015e4f883c7d6c2e3f9965fbe041b6ea5ae
6
+ metadata.gz: 11a8163ee4f27554dc761215220675eca51880be86bfb93fbcab57d546809eb87e2b80bb4324168ffed0b5770b4a016144964eb19f4c49de3c7c94a9c768f16c
7
+ data.tar.gz: f611012294674095ba01be56d93cc755f94a9763d014c3b5cf0e71cbe17796eba3305897349838921cf12de22c96db99ac8efe59f17f4ee224ee7040d39e9b21
@@ -92,15 +92,16 @@ module Xcodeproj
92
92
  # @return [Hash] The uniform type identifier of various product types.
93
93
  #
94
94
  PRODUCT_TYPE_UTI = {
95
- :application => 'com.apple.product-type.application',
96
- :framework => 'com.apple.product-type.framework',
97
- :dynamic_library => 'com.apple.product-type.library.dynamic',
98
- :static_library => 'com.apple.product-type.library.static',
99
- :bundle => 'com.apple.product-type.bundle',
100
- :unit_test_bundle => 'com.apple.product-type.bundle.unit-test',
101
- :app_extension => 'com.apple.product-type.app-extension',
102
- :watch_app => 'com.apple.product-type.application.watchapp',
103
- :watch_extension => 'com.apple.product-type.watchkit-extension',
95
+ :application => 'com.apple.product-type.application',
96
+ :framework => 'com.apple.product-type.framework',
97
+ :dynamic_library => 'com.apple.product-type.library.dynamic',
98
+ :static_library => 'com.apple.product-type.library.static',
99
+ :bundle => 'com.apple.product-type.bundle',
100
+ :unit_test_bundle => 'com.apple.product-type.bundle.unit-test',
101
+ :app_extension => 'com.apple.product-type.app-extension',
102
+ :command_line_tool => 'com.apple.product-type.tool',
103
+ :watch_app => 'com.apple.product-type.application.watchapp',
104
+ :watch_extension => 'com.apple.product-type.watchkit-extension',
104
105
  }.freeze
105
106
 
106
107
  # @return [Hash] The extensions or the various product UTIs.
@@ -1,5 +1,5 @@
1
1
  module Xcodeproj
2
2
  # The version of the xcodeproj gem.
3
3
  #
4
- VERSION = '0.24.1' unless defined? Xcodeproj::VERSION
4
+ VERSION = '0.24.2' unless defined? Xcodeproj::VERSION
5
5
  end
@@ -1,4 +1,11 @@
1
- require 'fiddle'
1
+ begin
2
+ require 'fiddle'
3
+ rescue LoadError
4
+ message = 'Xcodeproj relies on a library called `fiddle` to read and write ' \
5
+ 'Xcode project files. Ensure your Ruby installation includes ' \
6
+ '`fiddle` and try again.'
7
+ raise Xcodeproj::Informative, message
8
+ end
2
9
 
3
10
  module Xcodeproj
4
11
  # TODO: Delete me (compatibility with Ruby 1.8.7 C ext bundle)
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcodeproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.1
4
+ version: 0.24.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-28 00:00:00.000000000 Z
11
+ date: 2015-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: colored
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.2'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.2'
41
41
  description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
@@ -100,17 +100,17 @@ require_paths:
100
100
  - lib
101
101
  required_ruby_version: !ruby/object:Gem::Requirement
102
102
  requirements:
103
- - - ">="
103
+ - - '>='
104
104
  - !ruby/object:Gem::Version
105
105
  version: 2.0.0
106
106
  required_rubygems_version: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ">="
108
+ - - '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  requirements: []
112
112
  rubyforge_project:
113
- rubygems_version: 2.4.6
113
+ rubygems_version: 2.4.7
114
114
  signing_key:
115
115
  specification_version: 3
116
116
  summary: Create and modify Xcode projects from Ruby.