Skip to content

Commit

Permalink
Updated podspec. Added LICENSE file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars Anderson committed Jun 17, 2012
1 parent 2b03f15 commit 4e5c913
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
28 changes: 15 additions & 13 deletions LARSAdController.podspec
@@ -1,14 +1,16 @@
Pod::Spec.new do
name 'LARSAdController'
version '2.0.0'
summary 'A central manager singleton for both iAds and Google Ads.'
homepage 'https://github.com/larsacus/LARSAdController'
author 'Lars Anderson' => 'lars@drinkandapple.com'
source :git => 'https://github.com/larsacus/LARSAdController.git',
:tag => '2.0.0'

platforms 'iOS'
sdk '>= 3.2'

source_files 'LARSAdController.{h,m}'
Pod::Spec.new do |s|
s.name = 'LARSAdController'
s.version = '2.1.0'
s.summary = 'Singleton Objective-C class to not only easily integrate iAds into your app, but have AdMob ads running as a backup.'
s.description = 'A singleton class that manages iAds and Google Ads in a single container view. Since this is also a best practice method to correctly and easily integrate iAds, using Google ads as a backup is optional. All orientations and devices are supported (Pads and Pods).'
s.homepage = 'https://github.com/larsacus/LARSAdController'
s.author = {'Lars Anderson' => 'iAm@theonlylars.com'}
s.source = {:git => 'https://github.com/larsacus/LARSAdController.git', :tag => '2.1.0'}
s.platform = :ios, '4.0'
s.homepage = 'https://github.com/larsacus/LARSAdController'
s.source_files = 'LARSAdController.{h,m}'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.frameworks = 'iAd'
s.clean_paths = ['Example']
s.dependencies = 'GoogleAds'
end
7 changes: 7 additions & 0 deletions LICENSE
@@ -0,0 +1,7 @@
Copyright (c) 2010-2012 Lars Anderson, @theonlylars

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit 4e5c913

Please sign in to comment.