25 lines
724 B
Ruby
25 lines
724 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "BotKit"
|
|
s.version = "0.1.3"
|
|
s.summary = "BotKit is a Cocoa Touch static library for use in iOS projects."
|
|
s.homepage = "https://github.com/thoughtbot/BotKit"
|
|
|
|
s.license = 'MIT'
|
|
s.authors = { "Mark Adams" => "mark@thoughtbot.com", "Gordon Fontenot" => "gordon@thoughtbot.com", "Diana Zmuda" => "diana@apprentice.io" }
|
|
s.source = {
|
|
:git => "https://github.com/thoughtbot/BotKit.git",
|
|
:tag => "0.1.3"
|
|
}
|
|
|
|
s.platform = :ios, '5.0'
|
|
s.source_files = 'BotKit/**/*.{m,h}'
|
|
s.requires_arc = true
|
|
s.framework = 'CoreData'
|
|
|
|
s.prefix_header_contents = <<-EOS
|
|
#import <Availability.h>
|
|
#import <CoreData/CoreData.h>
|
|
EOS
|
|
|
|
end
|