Skip to content

Commit

Permalink
Merge branch 'feature/Add_Podspec' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Oggerschummer committed Feb 13, 2015
2 parents ec058dd + 349c032 commit 0637fa8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Simple iOS UIView Category to create a Pulse (Breathing light) Effect on your ne
## Install
Recommended to use CocoaPos:
``` bash
pod 'ZKPulseView', '~> 0.0.2'
pod 'ZKPulseView', '~> 0.0.3'
```

or you can just drag the ZKPulseView.h and ZKPulseView.m into your project and import them before you use it.
Expand All @@ -30,6 +30,9 @@ for any view you want to do pulse, you can use the following methods

-(void) startPulseWithColor:(UIColor *)color offset:(CGSize) offset frequency:(CGFloat) freq;

//to check if the animation is active:
-(BOOL) isPulsating

//to stop the pulse effect, just by calling:

-(void) stopPulseEffect;
Expand Down
23 changes: 23 additions & 0 deletions ZKPulseView.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|

s.name = "ZKPulseView"
s.version = "0.0.3"
s.summary = "Simple iOS UIView Category to create a Pulse (Breathing light) Effect on your needs"

s.description = <<-DESC
Display a pulse within a UIView
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC

s.homepage = "https://github.com/Oggerschummer/ZKPulseView"
s.platform = :ios
s.source = { :git => "https://github.com/Oggerschummer/ZKPulseView/Class", :tag => "0.0.3" }
s.source_files = "SuperLogger"
s.frameworks = "Foundation", "UIKit", "MessageUI"
s.requires_arc = yes

end

0 comments on commit 0637fa8

Please sign in to comment.