Skip to content

Commit

Permalink
add license and first pass at podscpec
Browse files Browse the repository at this point in the history
  • Loading branch information
amro committed Dec 19, 2013
1 parent 4d789f6 commit ede00f1
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
33 changes: 33 additions & 0 deletions ChimpKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#
# Be sure to run `pod spec lint ChimpKit.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |s|
s.name = "ChimpKit"
s.version = "3.0.0"
s.summary = "ChimpKit is an API wrapper for the MailChimp API 2.0."

s.description = <<-DESC
ChimpKit lets you interact with MailChimp's API to subscribe users,
fetch reports, send campaigns, and more. ChimpKit has OAuth2 baked in
so your users can easily log into their MailChimp account.
DESC

s.homepage = "https://github.com/mailchimp/ChimpKit3"

s.license = { :type => 'MIT', :file => 'LICENSE.TXT' }

s.author = { "Drew Conner" => "[email protected]", "Amro Mousa" => "[email protected]" }

s.platform = :ios, '7.0'
s.ios.deployment_target = '6.1'

s.source = { :git => "https://github.com/mailchimp/ChimpKit3.git", :tag => "3.0.0" }

s.source_files = 'ChimpKit3', 'Classes/**/*.{h,m,xib}'
s.requires_arc = true
end
20 changes: 20 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2010-2014

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 ede00f1

Please sign in to comment.