xcodeproj 1.0.0.rc.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/xcodeproj/constants.rb +1 -0
- data/lib/xcodeproj/gem_version.rb +1 -1
- data/lib/xcodeproj/scheme/build_action.rb +3 -1
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4661a83a53151976f7e363d73feda6f24df578e0
|
4
|
+
data.tar.gz: c9a08f7dca14cd343e14ab4bfbb0e2f46bbf89fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45849f18963cedccdb3d56284f9f7b9ae4eb671750dce2acb138b3760072afdd116b293953b0a476b521df35a24e074c56d52a0b942425a384619b0aefdea6b5
|
7
|
+
data.tar.gz: 0c32c169f15589f51712eec8ae8bf7f95f62781ba3e31eb20e38593768e89ed9d4ada6ecaec33d00be49b2224765710565af3517a509e21c385286a6f4eda850
|
data/lib/xcodeproj/constants.rb
CHANGED
@@ -113,6 +113,7 @@ module Xcodeproj
|
|
113
113
|
:bundle => 'com.apple.product-type.bundle',
|
114
114
|
:octest_bundle => 'com.apple.product-type.bundle',
|
115
115
|
:unit_test_bundle => 'com.apple.product-type.bundle.unit-test',
|
116
|
+
:ui_test_bundle => 'com.apple.product-type.bundle.ui-testing',
|
116
117
|
:app_extension => 'com.apple.product-type.app-extension',
|
117
118
|
:command_line_tool => 'com.apple.product-type.tool',
|
118
119
|
:watch_app => 'com.apple.product-type.application.watchapp',
|
@@ -79,7 +79,9 @@ module Xcodeproj
|
|
79
79
|
is_test_target = false
|
80
80
|
is_app_target = false
|
81
81
|
if target_or_node && target_or_node.is_a?(::Xcodeproj::Project::Object::PBXNativeTarget)
|
82
|
-
test_types = [Constants::PRODUCT_TYPE_UTI[:octest_bundle],
|
82
|
+
test_types = [Constants::PRODUCT_TYPE_UTI[:octest_bundle],
|
83
|
+
Constants::PRODUCT_TYPE_UTI[:unit_test_bundle],
|
84
|
+
Constants::PRODUCT_TYPE_UTI[:ui_test_bundle]]
|
83
85
|
app_types = [Constants::PRODUCT_TYPE_UTI[:application]]
|
84
86
|
is_test_target = test_types.include?(target_or_node.product_type)
|
85
87
|
is_app_target = app_types.include?(target_or_node.product_type)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcodeproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-05-
|
11
|
+
date: 2016-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -42,16 +42,22 @@ dependencies:
|
|
42
42
|
name: claide
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - '
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.0.0
|
48
|
+
- - <
|
46
49
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
50
|
+
version: '2.0'
|
48
51
|
type: :runtime
|
49
52
|
prerelease: false
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
51
54
|
requirements:
|
52
|
-
- - '
|
55
|
+
- - '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 1.0.0
|
58
|
+
- - <
|
53
59
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
60
|
+
version: '2.0'
|
55
61
|
description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
|
56
62
|
boring management tasks or build Xcode-friendly libraries. Also includes support
|
57
63
|
for Xcode workspaces (.xcworkspace) and configuration files (.xcconfig).
|