-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCheats.podspec
27 lines (23 loc) · 1.19 KB
/
Cheats.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'Cheats'
s.version = '2.0.0'
s.swift_version = '5.0'
s.summary = 'Retro cheat codes for modern iOS apps.'
s.description = <<-DESC
Cheats is an implementation of retro-style cheat codes (such as the Konami code) for iOS apps. Combine a sequence of actions consisting of swipes, shake gestures, taps and key presses to create a cheat code for unlocking features or Easter eggs in your app.
DESC
s.homepage = 'https://github.com/rwbutler/Cheats'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'rwbutler' => 'github@rwbutler.com' }
s.source = { :git => 'https://github.com/rwbutler/Cheats.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ross_w_butler'
s.ios.deployment_target = '8.0'
s.source_files = 'Cheats/Classes/**/*'
# s.resource_bundles = {
# 'Cheats' => ['Cheats/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end