Skip to content

Commit 0f519f1

Browse files
author
Omer Karisman
committed
1.0.0
1 parent dd559f1 commit 0f519f1

File tree

13 files changed

+1207
-1
lines changed

13 files changed

+1207
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,5 @@ fastlane/report.xml
6565
fastlane/Preview.html
6666
fastlane/screenshots
6767
fastlane/test_output
68+
69+
.DS_Store

.swift-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.2

HumbleAlertView.podspec

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |s|
2+
s.name = "HumbleAlertView"
3+
s.version = "1.0.0"
4+
s.summary = "Temporary and unobtrusive translucent alert view for iOS."
5+
s.description = <<-DESC
6+
HumbleAlertView is a humble view to display automagically disappearing information to your users.
7+
DESC
8+
s.homepage = "https://github.com/svtek/HumbleAlertView"
9+
s.license = { :type => 'MIT', :file => 'LICENSE' }
10+
s.author = { "okaris" => "[email protected]" }
11+
s.social_media_url = "http://twitter.com/okarisman"
12+
s.source = { :git => "https://github.com/svtek/HumbleAlertView.git", :tag => "#{s.version}" }
13+
s.source_files = 'HumbleAlertView.swift'
14+
s.ios.deployment_target = '9.0'
15+
s.framework = 'QuartzCore'
16+
end

0 commit comments

Comments
 (0)