mirror of
https://github.com/MacDownApp/macdown.git
synced 2026-05-17 12:40:37 +00:00
5251c16bf5
https://blog.cocoapods.org/CocoaPods-1.7.2/ Note that CDN became default since 1.8.0 so it's probably no longer experimental.
30 lines
679 B
Ruby
30 lines
679 B
Ruby
platform :osx, "10.8"
|
|
|
|
source 'https://github.com/MacDownApp/cocoapods-specs.git' # Patched libraries.
|
|
source 'https://cdn.cocoapods.org/'
|
|
|
|
project 'MacDown.xcodeproj'
|
|
|
|
inhibit_all_warnings!
|
|
|
|
target "MacDown" do
|
|
pod 'handlebars-objc', '~> 1.4'
|
|
pod 'hoedown', '~> 3.0.7', :inhibit_warnings => false
|
|
pod 'JJPluralForm', '~> 2.1'
|
|
pod 'LibYAML', '~> 0.1'
|
|
pod 'M13OrderedDictionary', '~> 1.1'
|
|
pod 'MASPreferences', '~> 1.3'
|
|
pod 'Sparkle', '~> 1.18', :inhibit_warnings => false
|
|
|
|
# Locked on 0.4.x until we drop 10.8.
|
|
pod 'PAPreferences', '~> 0.4'
|
|
end
|
|
|
|
target "MacDownTests" do
|
|
pod 'PAPreferences', '~> 0.4'
|
|
end
|
|
|
|
target "macdown-cmd" do
|
|
pod 'GBCli', '~> 1.1'
|
|
end
|