xcodeproj 0.5.4 → 0.5.5
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 +7 -0
- data/lib/xcodeproj/project/object_list.rb +15 -3
- data/lib/xcodeproj.rb +1 -1
- metadata +6 -12
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1d0bd284686d9b298ce9e336a2e39312b692d4c4
|
4
|
+
data.tar.gz: 2dde723b3dd726db454c2df48128b19279f95e59
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e35fe3e08eb59daca5d919959c289dabd680640620b6fdad288b69de28f8d10df6cb4fdcb81e43df2744cc00224be17bd0f4895faddcc86515ac0879c0eb7733
|
7
|
+
data.tar.gz: 994da7e4ea40df27ba68ba467210113d0d1cc1b4eef0c171c25b0996e7ebb36e9f55565b52b66cccda1305b3dc22d00278d9ff1f408d486e794ff30c1083d380
|
@@ -70,10 +70,10 @@ module Xcodeproj
|
|
70
70
|
perform_additions_operations(objects)
|
71
71
|
end
|
72
72
|
|
73
|
-
# Adds an object to list and updates its references count.
|
73
|
+
# Adds an object to list the and updates its references count.
|
74
74
|
#
|
75
|
-
# @param
|
76
|
-
#
|
75
|
+
# @param [AbstractObject, ObjectDictionary] object
|
76
|
+
# The object to add to the list.
|
77
77
|
#
|
78
78
|
# @return [void]
|
79
79
|
#
|
@@ -82,6 +82,18 @@ module Xcodeproj
|
|
82
82
|
perform_additions_operations(object)
|
83
83
|
end
|
84
84
|
|
85
|
+
# Prepends an object to the list and updates its references count.
|
86
|
+
#
|
87
|
+
# @param [AbstractObject, ObjectDictionary] object
|
88
|
+
# The object to add to the list.
|
89
|
+
#
|
90
|
+
# @return [void]
|
91
|
+
#
|
92
|
+
def unshift(object)
|
93
|
+
super
|
94
|
+
perform_additions_operations(object)
|
95
|
+
end
|
96
|
+
|
85
97
|
# Removes an object to list and updates its references count.
|
86
98
|
#
|
87
99
|
# @param [AbstractObject, ObjectDictionary] object
|
data/lib/xcodeproj.rb
CHANGED
metadata
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcodeproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
5
|
-
prerelease:
|
4
|
+
version: 0.5.5
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Eloy Duran
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-04-
|
11
|
+
date: 2013-04-08 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: activesupport
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
@@ -22,7 +20,6 @@ dependencies:
|
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
25
|
- !ruby/object:Gem::Version
|
@@ -30,7 +27,6 @@ dependencies:
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: colored
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
31
|
- - ~>
|
36
32
|
- !ruby/object:Gem::Version
|
@@ -38,7 +34,6 @@ dependencies:
|
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
38
|
- - ~>
|
44
39
|
- !ruby/object:Gem::Version
|
@@ -89,26 +84,25 @@ files:
|
|
89
84
|
homepage: https://github.com/cocoapods/xcodeproj
|
90
85
|
licenses:
|
91
86
|
- MIT
|
87
|
+
metadata: {}
|
92
88
|
post_install_message:
|
93
89
|
rdoc_options: []
|
94
90
|
require_paths:
|
95
91
|
- ext
|
96
92
|
- lib
|
97
93
|
required_ruby_version: !ruby/object:Gem::Requirement
|
98
|
-
none: false
|
99
94
|
requirements:
|
100
|
-
- -
|
95
|
+
- - '>='
|
101
96
|
- !ruby/object:Gem::Version
|
102
97
|
version: '0'
|
103
98
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
-
none: false
|
105
99
|
requirements:
|
106
|
-
- -
|
100
|
+
- - '>='
|
107
101
|
- !ruby/object:Gem::Version
|
108
102
|
version: '0'
|
109
103
|
requirements: []
|
110
104
|
rubyforge_project:
|
111
|
-
rubygems_version:
|
105
|
+
rubygems_version: 2.0.0
|
112
106
|
signing_key:
|
113
107
|
specification_version: 3
|
114
108
|
summary: Create and modify Xcode projects from Ruby.
|