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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c0b803ad9d19c126cbeedafa30287da95fc4b2fd
4
- data.tar.gz: b8a00069deff1cbd62f201d31174bb4162665e9c
3
+ metadata.gz: 4661a83a53151976f7e363d73feda6f24df578e0
4
+ data.tar.gz: c9a08f7dca14cd343e14ab4bfbb0e2f46bbf89fd
5
5
  SHA512:
6
- metadata.gz: fb755cc6774fd3a66ac158e953b6c0b08dfe387a00799a40229a5afc7b37a9ed5633184603a6720eba89bfc6c095e685e2f8c46fa67c4ecafdb186ae2279a512
7
- data.tar.gz: 483631683fcac7489087808c551c0b6d5dfd18a66a8bfa8696aa0c4578cd8bfeb8f7a115770df4129f2008e37ab1e763d839242cff2566d391b6b497399f7584
6
+ metadata.gz: 45849f18963cedccdb3d56284f9f7b9ae4eb671750dce2acb138b3760072afdd116b293953b0a476b521df35a24e074c56d52a0b942425a384619b0aefdea6b5
7
+ data.tar.gz: 0c32c169f15589f51712eec8ae8bf7f95f62781ba3e31eb20e38593768e89ed9d4ada6ecaec33d00be49b2224765710565af3517a509e21c385286a6f4eda850
@@ -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',
@@ -1,5 +1,5 @@
1
1
  module Xcodeproj
2
2
  # The version of the xcodeproj gem.
3
3
  #
4
- VERSION = '1.0.0.rc.2'.freeze unless defined? Xcodeproj::VERSION
4
+ VERSION = '1.0.0'.freeze unless defined? Xcodeproj::VERSION
5
5
  end
@@ -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], Constants::PRODUCT_TYPE_UTI[:unit_test_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.rc.2
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-04 00:00:00.000000000 Z
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: 1.0.0.rc.1
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: 1.0.0.rc.1
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).