File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1
1
source "http://rubygems.org"
2
2
3
3
gem "cocoapods" , "~> 0.39.0"
4
+ gem "rake"
5
+ gem "xcpretty"
Original file line number Diff line number Diff line change 45
45
molinillo (0.4.4 )
46
46
nap (1.1.0 )
47
47
netrc (0.7.8 )
48
+ rake (10.5.0 )
49
+ rouge (1.10.1 )
48
50
thread_safe (0.3.5 )
49
51
tzinfo (1.2.2 )
50
52
thread_safe (~> 0.1 )
51
53
xcodeproj (0.28.2 )
52
54
activesupport (>= 3 )
53
55
claide (~> 0.9.1 )
54
56
colored (~> 1.2 )
57
+ xcpretty (0.2.2 )
58
+ rouge (~> 1.8 )
55
59
56
60
PLATFORMS
57
61
ruby
58
62
59
63
DEPENDENCIES
60
64
cocoapods (~> 0.39.0 )
65
+ rake
66
+ xcpretty
61
67
62
68
BUNDLED WITH
63
69
1.11.2
Original file line number Diff line number Diff line change
1
+ task default : :build
2
+
3
+ desc "Build the framework target and the example project"
4
+ task :build do
5
+ sh %(xcodebuild -project ICInputAccessory.xcodeproj -scheme ICInputAccessory -sdk iphonesimulator -destination "name=iPhone 6,OS=latest" clean build | xcpretty -c)
6
+ sh %(xcodebuild -workspace ICInputAccessory.xcworkspace -scheme Example -sdk iphonesimulator -destination "name=iPhone 6,OS=latest" clean build | xcpretty -c)
7
+ end
You can’t perform that action at this time.
0 commit comments