xcodeproj 1.5.0 → 1.5.1

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: f8046e57ba42d21845af2c95f063f5c51fd87625
4
- data.tar.gz: 261b049b8d6d5dbc3884901e1bd6a6d184a6b0ed
3
+ metadata.gz: 9084e7a80a61cbf7fe8fef7da730e4d3c9ff90b1
4
+ data.tar.gz: 3dbcdcd622aa7c288d92c570e0a882ac24fd28cb
5
5
  SHA512:
6
- metadata.gz: 4c6bdef5a2db8877086391a9ba5382ec220a58fa4cd212c432ddb2dd7659a964baf30f96566ec83c54a9de6ff427f7e4a27f161997670298ea898205390899b7
7
- data.tar.gz: 31e7ec5eb73b9c36733b21d53997fc06e6ca986d8eb11438f611aeda9fbb7fad607e65438d9f11a452f590c538d5bc3e418b0f3f141d5a823dc99c5bae326b90
6
+ metadata.gz: 56453fae972dbbc49bda896460fd976a9028e0a5fab6e801195435eea2aa85e834ef12f113651c2ee9e41045dc6c2944b43e6bfe9709a746bfc821f0cdfd5267
7
+ data.tar.gz: b5b0a96286a6364d1061c8e1838bc66c8c979594cd50c3059d04ef5ac269b10b6f91dcbe2a288cf42e8a1e6a1c70a4bf0c1e03eef54dd1b9793a25ba1870ab2b
@@ -1,5 +1,5 @@
1
1
  module Xcodeproj
2
2
  # The version of the xcodeproj gem.
3
3
  #
4
- VERSION = '1.5.0'.freeze unless defined? Xcodeproj::VERSION
4
+ VERSION = '1.5.1'.freeze unless defined? Xcodeproj::VERSION
5
5
  end
@@ -77,11 +77,18 @@ module Xcodeproj
77
77
 
78
78
  # @return [Bool] Checks whether there are merge conflicts in the file.
79
79
  #
80
- # @param [#to_s] path
80
+ # @param [#to_s] contents
81
81
  # The contents of the file.
82
82
  #
83
83
  def self.file_in_conflict?(contents)
84
- contents.match(/^(<|=|>){7}/)
84
+ conflict_regex = /
85
+ ^<{7}(?!<) # Exactly 7 left arrows at the beginning of the line
86
+ [\w\W]* # Anything
87
+ ^={7}(?!=) # Exactly 7 equality symbols at the beginning of the line
88
+ [\w\W]* # Anything
89
+ ^>{7}(?!>) # Exactly 7 right arrows at the beginning of the line
90
+ /xm
91
+ contents.match(conflict_regex)
85
92
  end
86
93
  end
87
94
  end
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.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-06 00:00:00.000000000 Z
11
+ date: 2017-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: CFPropertyList