Files
JBChartView/BotKit/0.1/BotKit.podspec
T
2012-11-23 10:40:36 -08:00

25 lines
709 B
Ruby

Pod::Spec.new do |s|
s.name = "BotKit"
s.version = "0.1"
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"
}
s.platform = :ios, '5.0'
s.source_files = 'BotKit'
s.requires_arc = true
s.framework = 'CoreData'
s.prefix_header_contents = <<-EOS
#import <Availability.h>
#import <CoreData/CoreData.h>
EOS
end