forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/CocoaPods/Specs
- Loading branch information
Showing
3 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "AnalyticsKit" | ||
s.version = "1.0.1" | ||
s.summary = "Analytics framework for iOS" | ||
|
||
s.description = <<-DESC | ||
The goal of AnalyticsKit is to provide a consistent API for analytics regardless of which analytics provider you're using behind the scenes. | ||
The benefit of using AnalyticsKit is that if you decide to start using a new analytics provider, or add an additional one, you need to write/change much less code! | ||
AnalyticsKit works both in ARC based projects and non-ARC projects. | ||
DESC | ||
|
||
s.homepage = "https://github.com/twobitlabs/AnalyticsKit" | ||
|
||
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' } | ||
|
||
s.authors = { "Two Bit Labs" => "", "Todd Huss" => "", "Susan Detwiler" => "", "Christopher Pickslay" => "", "Zac Shenker" => "", "Sinnerschrader Mobile" => "" } | ||
|
||
|
||
|
||
s.platform = :ios | ||
s.source = { :git => "https://github.com/twobitlabs/AnalyticsKit.git", :tag => s.version.to_s } | ||
|
||
s.subspec 'Core' do |core| | ||
core.source_files = 'AnalyticsKit.{h,m}', 'AnalyticsKitEvent.{h,m}', 'AnalyticsKitDebugProvider.{h,m}' | ||
end | ||
|
||
s.subspec 'Flurry' do |f| | ||
f.source_files = 'AnalyticsKitFlurryProvider.{h,m}' | ||
f.dependency 'FlurrySDK' | ||
f.dependency 'AnalyticsKit/Core' | ||
end | ||
|
||
s.subspec 'Mixpanel' do |m| | ||
m.source_files = 'AnalyticsKitMixpanelProvider.{h,m}' | ||
m.dependency 'Mixpanel' | ||
m.dependency 'AnalyticsKit/Core' | ||
end | ||
|
||
s.subspec 'NewRelic' do |nr| | ||
nr.source_files = 'AnalyticsKitNewRelicProvider.{h,m}' | ||
nr.dependency 'NewRelicAgent' | ||
nr.dependency 'AnalyticsKit/Core' | ||
nr.platform = :ios, '5.0' | ||
end | ||
|
||
s.subspec 'TestFlight' do |tf| | ||
tf.source_files = 'AnalyticsKitTestFlightProvider.{h,m}' | ||
tf.dependency 'TestFlightSDK' | ||
tf.dependency 'AnalyticsKit/Core' | ||
end | ||
|
||
s.subspec 'GoogleAnalytics' do |ga| | ||
ga.source_files = 'AnalyticsKitGoogleAnalyticsProvider.{h,m}' | ||
ga.dependency 'GoogleAnalytics-iOS-SDK', '~> 2.0beta4' | ||
ga.dependency 'AnalyticsKit/Core' | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Disposition" | ||
s.version = "1.0" | ||
s.summary = "A set of functions to modify the attributes of a CGRect structure in an easier way" | ||
s.homepage = "https://github.com/Hecktorzr/Disposition" | ||
s.license = 'MIT' | ||
s.author = { "Hector Zarate" => "[email protected]" } | ||
s.source = { :git => "https://github.com/Hecktorzr/Disposition.git", :tag => '1.0' } | ||
s.source_files = 'Source/*.{h,m}' | ||
s.ios.deployment_target = '3.0' | ||
s.requires_arc = true | ||
end |
15 changes: 15 additions & 0 deletions
15
NSManagedObjectContext-Hydrate/1.0.1/NSManagedObjectContext-Hydrate.podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "NSManagedObjectContext-Hydrate" | ||
s.version = "1.0.1" | ||
s.summary = "A drop-in category of NSManagedObjectContext class for easily preloading a CoreData store with custom objects from JSON or CSV data." | ||
s.homepage = "https://github.com/dzenbot/NSManagedObjectContext-Hydrate" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Ignacio Romero Z." => "[email protected]" } | ||
s.platform = :ios, '6.0' | ||
s.ios.deployment_target = '6.0' | ||
s.source = { :git => "https://github.com/dzenbot/NSManagedObjectContext-Hydrate.git", :tag => "v1.0.1" } | ||
s.source_files = 'Classes', 'Source' | ||
s.framework = 'CoreData' | ||
s.requires_arc = true | ||
end |