Authored by Edoardo Ceccarelli

fixed Podfile Unsupported options otherwise it wouldn't pod install

Showing 1 changed file with 6 additions and 6 deletions
@@ -2,18 +2,18 @@ workspace 'Masonry' @@ -2,18 +2,18 @@ workspace 'Masonry'
2 2
3 platform :ios, '8.0' 3 platform :ios, '8.0'
4 4
5 -xcodeproj 'Examples/Masonry iOS Examples'  
6 -target 'Masonry iOS Examples', :exclusive => true do 5 +project 'Examples/Masonry iOS Examples'
  6 +target 'Masonry iOS Examples' do
7 pod 'Masonry', :path => './' 7 pod 'Masonry', :path => './'
8 end 8 end
9 9
10 -target 'Masonry iOS Tests', :exclusive => true do  
11 - xcodeproj 'Tests/Masonry Tests' 10 +target 'Masonry iOS Tests' do
  11 + project 'Tests/Masonry Tests'
12 pod 'Expecta' 12 pod 'Expecta'
13 end 13 end
14 14
15 -target 'MasonryTestsLoader', :exclusive => true do  
16 - xcodeproj 'Tests/Masonry Tests' 15 +target 'MasonryTestsLoader' do
  16 + project 'Tests/Masonry Tests'
17 pod 'Masonry', :path => './' 17 pod 'Masonry', :path => './'
18 end 18 end
19 19