cocoapods-aqarahome 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/cocoapods-aqarahome/command/Podfile_Dev.rb +4 -2
- data/lib/cocoapods-aqarahome/gem_version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81f9944f32bb48c871a172a5f889e8f3dd492f2cf32349b08afdaaea989df995
|
4
|
+
data.tar.gz: c9a244cf787b1907b79fb341705c7147bb6e83f4a6f16d3272a4d3eee629f7ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 914d28a91cbee661904735f408656c72d3a3039e2cc299a1f8d282792c854e24337a7c5f917a4f950e2b8bdadda295ddc71879d143a46510664cc0285ca3735d
|
7
|
+
data.tar.gz: 492ff9a16e86b93848ee265317dd230f6b99809f97b1f6e0b050f1c08613b1b541f467c5d1b52b21fc3c6f39858362567a89fbf26898de3e1d18e27117433e3e
|
data/Gemfile.lock
CHANGED
@@ -50,7 +50,7 @@ module Pod
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
if target.name == "Pods-AqaraHome"
|
53
|
-
puts "Updating #{target.name} OTHER_LDFLAGS To fit Xcode15"
|
53
|
+
puts "Updating #{target.name} OTHER_LDFLAGS To fit Xcode15.0.1+"
|
54
54
|
target.build_configurations.each do |config|
|
55
55
|
xcconfig_path = config.base_configuration_reference.real_path
|
56
56
|
|
@@ -61,11 +61,13 @@ module Pod
|
|
61
61
|
f.each_line{|l|
|
62
62
|
s=""
|
63
63
|
if l.include?('iconv.2.4.0')
|
64
|
+
len = l.length
|
64
65
|
s+=l.gsub!("iconv.2.4.0", "iconv.2")
|
65
66
|
#seek back to the beginning of the line.
|
66
|
-
f.seek(-
|
67
|
+
f.seek(-len, IO::SEEK_CUR)
|
67
68
|
#overwrite line with spaces and add a newline char
|
68
69
|
f.write(s * 1)
|
70
|
+
f.write(' ' * (len - l.length - 1))
|
69
71
|
break
|
70
72
|
end
|
71
73
|
}
|