mirror of
https://github.com/zhigang1992/macdown.git
synced 2026-01-12 22:48:37 +08:00
25 lines
689 B
Ruby
25 lines
689 B
Ruby
# Uncomment this line to define a global platform for your project
|
|
# platform :ios, "6.0"
|
|
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
xcodeproj 'MacDown.xcodeproj'
|
|
|
|
target "MacDown" do
|
|
pod 'handlebars-objc', '~> 1.3'
|
|
pod 'hoedown', '~> 3.0'
|
|
pod 'JJPluralForm', '~> 2.1' # Plural form localization.
|
|
pod 'LibYAML', '~> 0.1', :inhibit_warnings => true
|
|
pod 'M13OrderedDictionary', '~> 1.0'
|
|
pod 'MASPreferences', '~> 1.1' # Preference window.
|
|
pod 'PAPreferences', '~> 0.4' # Preference singleton.
|
|
pod 'Sparkle', '< 1.8' # Updater.
|
|
end
|
|
|
|
target "MacDownTests" do
|
|
pod 'PAPreferences', '~> 0.4'
|
|
end
|
|
|
|
target "macdown-cmd" do
|
|
pod 'GBCli', '~> 1.0'
|
|
end
|