pod-builder 1.1.0 ā†’ 1.2.0

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
  SHA256:
3
- metadata.gz: 75c011fa869888a095f17bcabcc5f6130cf19d43be6d67794c75ff4232cb5740
4
- data.tar.gz: 53d8c8304e9d1ee6e192fa6df5149260b12c302fea43075b0bd84ee35a5ed95a
3
+ metadata.gz: 006efbf92b3820ad82d316abb29413eb03a8069c7c11b007b53a9fa30ef7fbe2
4
+ data.tar.gz: c996f5a5bb54b11afd59e8fd0c85ec2943d8f4770cac09ee72b1827e81299a68
5
5
  SHA512:
6
- metadata.gz: b9d50554ec87bb186b8e79af81b03fd10c555550db5005f9e9a5b5793562276f6ee9a6c11ecac06698aa2b35585114b385ba5fdb08d22d4742a81040e9c7a9de
7
- data.tar.gz: 97c02d867c3ac4e007b6a21671c22a68e6ddbbfd863e4a6950ca3813a237b26b059b0cd6fe63e50914ba96e6c4280064e23b4ea49a24cc2265bebe687b8944a2
6
+ metadata.gz: 101cfe5d41540ebcf87cd52e13a0152572777f3d7782210530be54aa31183da2f658dc3ff3eb3a57e13f6f8efc3e35c74b3446fd7d85e9d15212b468cf826998
7
+ data.tar.gz: 2293dce6d51875dbbb6d7fe269ea4239a9a967ab9a18a0d988f5d41c0e7790296a478c161df52223393d74b1ddcff65118b9b1289cafbdb9c50077996e2ca3c5
@@ -21,7 +21,7 @@ module PodBuilder
21
21
  lldbinit_path = File.expand_path('~/.lldbinit-Xcode')
22
22
  lldbinit_content = File.exists?(lldbinit_path) ? File.read(lldbinit_path) : ""
23
23
  restore_hash = podfile_restore_hash()
24
- if lldbinit_content.include?("<pb_md5:#{base_path}:#{restore_hash}")
24
+ if lldbinit_content.include?("# <pb_md5:#{base_path}:#{restore_hash}")
25
25
  puts "\n\nšŸŽ‰ already in sync!\n".green
26
26
  return 0
27
27
  end
@@ -138,8 +138,8 @@ module PodBuilder
138
138
  end
139
139
 
140
140
  restore_hash = podfile_restore_hash()
141
- source_map_lines.insert(0, "<pb_md5:#{base_path}:#{restore_hash}>")
142
- source_map_lines.insert(0, "<pb:#{base_path}>")
141
+ source_map_lines.insert(0, "# <pb_md5:#{base_path}:#{restore_hash}>")
142
+ source_map_lines.insert(0, "# <pb:#{base_path}>")
143
143
 
144
144
  lldbinit_lines += source_map_lines
145
145
 
@@ -1,4 +1,4 @@
1
1
  module PodBuilder
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pod-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomas Camin