25 lines
674 B
Ruby
25 lines
674 B
Ruby
Pod::Spec.new do |s|
|
|
|
|
s.name = 'OGSwitch'
|
|
s.version = '1.0'
|
|
s.summary = 'Switch Control for macOS'
|
|
s.homepage = 'https://github.com/OskarGroth/OGSwitch'
|
|
s.license = {
|
|
:type => 'MIT',
|
|
:file => 'LICENSE'
|
|
}
|
|
s.author = {
|
|
'Oskar Groth' => 'oskar@cindori.org'
|
|
}
|
|
s.source = {
|
|
:git => 'https://github.com/OskarGroth/OGSwitch.git',
|
|
:tag => s.version.to_s
|
|
}
|
|
s.platform = :osx, '10.9'
|
|
s.source_files = 'OGSwitch/OGSwitch.{swift}'
|
|
s.requires_arc = true
|
|
s.screenshot = "https://raw.githubusercontent.com/OskarGroth/OGSwitch/master/screenshot.jpg"
|
|
s.social_media_url = "https://twitter.com/cindoriapps"
|
|
|
|
end
|