Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/CocoaPods/Specs
Browse files Browse the repository at this point in the history
  • Loading branch information
m1entus committed Oct 1, 2013
2 parents 5c96b49 + c46c0b7 commit 85bce35
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 0 deletions.
60 changes: 60 additions & 0 deletions AnalyticsKit/1.0.1/AnalyticsKit.podspec
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
12 changes: 12 additions & 0 deletions Disposition/1.0/Disposition.podspec
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
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

0 comments on commit 85bce35

Please sign in to comment.