-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathXCFit.podspec
22 lines (18 loc) · 1013 Bytes
/
XCFit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'XCFit'
s.version = '10.2.0'
s.summary = 'Full Stack BDD for iOS and macOS Apps with Swift, Xcode using XCUITest, Cucumberish, FitNesse and friends.'
s.description = <<-DESC
XCFit is a full stack BDD framework for iOS apps with Swift supports Protocol Oriented BDD and Page Object Pattern.
DESC
s.homepage = 'https://github.com/Shashikant86/XCFit'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Shashikant86' => '[email protected]' }
s.source = { :git => 'https://github.com/Shashikant86/XCFit.git', :tag => "#{s.version}"}
s.social_media_url = 'https://twitter.com/Shashikant86'
s.ios.deployment_target = '10.0'
s.source_files = 'Sources/*.swift'
s.framework = "XCTest"
s.xcconfig = { "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES" => "NO" }
end