Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

[Work In Progress] Adding tests and test coverage to the project #232

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
481 changes: 0 additions & 481 deletions MKStoreKit.m

This file was deleted.

23 changes: 23 additions & 0 deletions MKStoreKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "MKStoreKit"
s.version = "6.0.0"
s.summary = "The "Go to" In App Purchases Framework for iOS 7+"
s.description = <<-DESC
An in-App Purchase framework for iOS 7.0+.
MKStoreKit makes in-App Purchasing super simple by remembering your purchases,
validating reciepts, and tracking virtual currencies (consumable purchases).
Additionally, it keeps track of auto-renewable subscriptions and their expirationd dates.
It couldn't be easier!
DESC
s.homepage = "https://github.com/MugunthKumar/MKStoreKit"
s.license = 'MIT'
s.author = { "Mugunth Kumar" => "[email protected]" }
s.source = { :git => "https://github.com/MugunthKumar/MKStoreKit.git", :tag => s.version.to_s }

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

s.public_header_files = 'Pod/Classes/**/*.h'
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'StoreKit'
end
Loading