Skip to content

Commit c1e15d4

Browse files
authored
Fix podspec source specification (#26)
Fixes #25. Ruby only interpolates values in double-quoted strings
1 parent 54eeb60 commit c1e15d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nodejs-mobile-react-native.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pod::Spec.new do |s|
77
s.version = package['version']
88
s.summary = package['description']
99
s.license = package['license']
10-
s.source = { :git => 'https://github.com/nodejs-mobile/nodejs-mobile-react-native.git', :tag => 'v#{s.version}' }
10+
s.source = { :git => 'https://github.com/nodejs-mobile/nodejs-mobile-react-native.git', :tag => "v#{s.version}" }
1111
s.authors = package['author']
1212
s.homepage = package['homepage']
1313
s.platform = :ios, '9.0'
@@ -21,4 +21,4 @@ Pod::Spec.new do |s|
2121
s.ios.vendored_frameworks = 'ios/NodeMobile.framework'
2222
s.static_framework = true
2323
s.dependency 'React-Core'
24-
end
24+
end

0 commit comments

Comments
 (0)