Skip to content

Commit

Permalink
Updated README and PodSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
sascha committed Feb 16, 2014
1 parent 19535a7 commit 944328e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 12 deletions.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# SSCWhatsAppActivity

#### A UIActivity subclass for sharing messages with WhatsApp.
[![Version](http://cocoapod-badges.herokuapp.com/v/SSCWhatsAppActivity/badge.png)](http://cocoadocs.org/docsets/foo)
[![Platform](http://cocoapod-badges.herokuapp.com/p/SSCWhatsAppActivity/badge.png)](http://cocoadocs.org/docsets/foo)

## Requirements

iOS 6.0+ is required.

## Installation

SSCWhatsAppActivity is available through [CocoaPods](http://cocoapods.org), to install
it simply add the following line to your Podfile:

pod "SSCWhatsAppActivity"

## Usage

Expand All @@ -18,3 +30,11 @@ Typical usage will look something like this:
Have a look at the demo app to see it in context.

![Demo screenshot](https://raw.github.com/sascha/SSCWhatsAppActivity/master/screenshot.png)

## Author

Sascha Schwabbauer, [email protected]

## License

foo is available under the MIT license. See the LICENSE file for more info.
26 changes: 15 additions & 11 deletions SSCWhatsAppActivity.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
Pod::Spec.new do |s|
s.platform = :ios, '6.0'
s.name = "SSCWhatsAppActivity"
s.version = "1.0"
s.summary = "A UIActivity subclass for sharing messages with WhatsApp."
s.homepage = "https://github.com/sascha/SSCWhatsAppActivity"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Sascha Schwabbauer" => "[email protected]" }
s.source = { :git => "https://github.com/sascha/SSCWhatsAppActivity.git", :tag => s.version.to_s }
s.source_files = 'SSCWhatsAppActivity/*.{h,m}'
s.resources = 'SSCWhatsAppActivity/*.png'
s.requires_arc = true
s.name = "SSCWhatsAppActivity"
s.version = "1.0"
s.summary = "A UIActivity subclass for sharing messages with WhatsApp."
s.homepage = "https://github.com/sascha/SSCWhatsAppActivity"
s.screenshots = "https://raw.github.com/sascha/SSCWhatsAppActivity/master/screenshot.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Sascha Schwabbauer" => "[email protected]" }
s.source = { :git => "https://github.com/sascha/SSCWhatsAppActivity.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/NAME'

s.platform = :ios, '6.0'
s.requires_arc = true

s.source_files = 'SSCWhatsAppActivity/*.{h,m}'
s.resources = 'SSCWhatsAppActivity/*.png'
end

0 comments on commit 944328e

Please sign in to comment.