update podspecs to use make get_version

This commit is contained in:
JP Simard
2016-12-06 22:08:24 -08:00
parent 9ddf456867
commit 345e34f1a4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftLint'
s.version = '0.13.2'
s.version = `make get_version`
s.summary = 'A tool to enforce Swift style and conventions.'
s.homepage = 'https://github.com/realm/SwiftLint'
s.license = 'MIT'
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftLintFramework'
s.version = '0.13.2'
s.version = `make get_version`
s.summary = 'A tool to enforce Swift style and conventions.'
s.homepage = 'https://github.com/realm/SwiftLint'
s.source = { :git => s.homepage + '.git', :tag => s.version }