luna-binary-uploader 0.1.15 → 0.1.16
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 +4 -4
- data/lib/luna/binary/common/common.rb +3 -2
- data/lib/luna/binary/uploader/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: eabb8cf60ac1ae91b7f1bcdf005fd59b885ee60627307c4aa3ac0f6150c759b3
|
4
|
+
data.tar.gz: 04d6b4672865935bcc3d204e4b4657e6351ceaca39687f58909580fb45aeb179
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0422488449593c2e144358cf2c98a116af7800675c8e6c97667120bca995a7eeaf9b3421f3fc5c1efa17c28efa82e733f66995ea397eee146da64d3f9de1bbb3'
|
7
|
+
data.tar.gz: 201e7660cfacc4d82ba60fb7d561de626e3841787ef5f122bce557a435213dd25ece50059d168e0cb98f9ab375f334b358b42ce58ea835416d0f662b5857856c
|
@@ -120,13 +120,14 @@ module Luna
|
|
120
120
|
File.open(Dir.pwd+"/Podfile", 'r:utf-8') do |f|
|
121
121
|
f.each_line do |item|
|
122
122
|
if item[":dev_env_use_binary"]
|
123
|
-
matchs = item.match(
|
123
|
+
matchs = item.match(/\'(?<=').*?(?=')\'/)
|
124
124
|
if matchs != nil
|
125
|
-
list << matchs[
|
125
|
+
list << matchs[0].gsub("'", "")
|
126
126
|
end
|
127
127
|
end
|
128
128
|
end
|
129
129
|
end
|
130
|
+
p "use_framework_list: #{list}"
|
130
131
|
return list
|
131
132
|
end
|
132
133
|
end
|