-
Notifications
You must be signed in to change notification settings - Fork 8
/
Downpour.podspec
28 lines (22 loc) · 1.01 KB
/
Downpour.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
28
Pod::Spec.new do |s|
s.name = "Downpour"
s.version = "0.2.0"
s.summary = "Get TV & Movie info from downloaded filenames"
s.description = <<-DESC
Downpour was built for [Fetch](http://getfetchapp.com) — a Put.io client — to parse TV & Movie information from downloaded files. It can gather the following from a raw file name:
- TV or movie title
- Year of release
- TV season number
- TV episode number
DESC
s.homepage = "https://github.com/steve228uk/Downpour"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Stephen Radford" => "[email protected]" }
s.source = { :git => "https://github.com/steve228uk/Downpour.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/steve228uk'
s.osx.deployment_target = '10.10'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'Sources/**/*'
end