-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDefactory.podspec
More file actions
29 lines (23 loc) · 941 Bytes
/
Defactory.podspec
File metadata and controls
29 lines (23 loc) · 941 Bytes
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
Pod::Spec.new do |s|
s.name = "Defactory"
s.version = "0.1"
s.summary = "The simplest way to build test objects."
s.description = <<-DESC
* Define factories once, build everywhere.
* Named factories.
* Sequences.
* Associations.
* Handles primitives
* Factory inheritance.
* Tested.
DESC
s.homepage = "https://github.com/luisobo/Defactory"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Luis Solano" => "contact@luissolano.com" }
s.ios.deployment_target = '4.0'
s.osx.deployment_target = '10.7'
s.source = { :git => "https://github.com/luisobo/Defactory.git", :tag => "0.1" }
s.source_files = 'Defactory', 'Defactory/**/*.{h,m}'
s.public_header_files = 'Defactory/**/*.h'
s.requires_arc = true
end