Files
JBChartView/BotKit/0.1.4/BotKit.podspec
T
Gordon Fontenot 6cbfed9a07 [Update] BotKit (0.1.4)
Versions 0.1.2 and 0.1.3 were broken, and those tags don't exist
anymore, so I have removed those versions from the repo.
2013-01-12 22:49:13 -05:00

25 lines
724 B
Ruby

Pod::Spec.new do |s|
s.name = "BotKit"
s.version = "0.1.4"
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.4"
}
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