-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSimpleBDD.podspec
More file actions
35 lines (27 loc) · 1.16 KB
/
SimpleBDD.podspec
File metadata and controls
35 lines (27 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
# Be sure to run `pod lib lint SimpleBDD.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SimpleBDD'
s.version = '0.1.0'
s.summary = 'Simple library for tests in BDD style, written with Objective-C.'
s.description = <<-DESC
Simple BDD gives you possibiity to improve readability of your tests written in KIF.
DESC
s.homepage = 'https://github.com/AzimoLabs/SimpleBDD.git'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { 'Przemysław Wośko' => 'przemek.wosko@azimo.com' }
s.source = { :git => 'https://github.com/AzimoLabs/SimpleBDD.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'SimpleBDD/Classes/**/*'
# s.resource_bundles = {
# 'SimpleBDD' => ['SimpleBDD/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'XCTest'
s.dependency 'KIF', '~> 3.4.2'
end