diff --git a/ChimpKit.podspec b/ChimpKit.podspec new file mode 100644 index 0000000..a0c7003 --- /dev/null +++ b/ChimpKit.podspec @@ -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" => "drew@mailchimp.com", "Amro Mousa" => "amro@mailchimp.com" } + + 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 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..112bbb8 --- /dev/null +++ b/LICENSE.txt @@ -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.