diff --git a/License.txt b/License.txt index 8455967..e9c1b0c 100644 --- a/License.txt +++ b/License.txt @@ -1,11 +1,14 @@ +Created by Aryan Gh on 5/4/13. Copyright (c) 2013 Aryan Ghassemi. All rights reserved. -Permission to use, copy, modify and distribute this software and its documentation -is hereby granted, provided that both the copyright notice and this permission -notice appear in all copies of the software, derivative works or modified versions, -and any portions thereof, and that both notices appear in supporting documentation, -and that credit is given to Aryan Ghassemi in all documents and publicity -pertaining to direct or indirect use of this code or its derivatives. +https://github.com/aryaxt/iOS-Slide-Menu + +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. diff --git a/SlideMenu/Source/SlideNavigationController.h b/SlideMenu/Source/SlideNavigationController.h index b57328c..ad6728a 100644 --- a/SlideMenu/Source/SlideNavigationController.h +++ b/SlideMenu/Source/SlideNavigationController.h @@ -7,12 +7,12 @@ // // https://github.com/aryaxt/iOS-Slide-Menu // -// Permission to use, copy, modify and distribute this software and its documentation -// is hereby granted, provided that both the copyright notice and this permission -// notice appear in all copies of the software, derivative works or modified versions, -// and any portions thereof, and that both notices appear in supporting documentation, -// and that credit is given to Aryan Ghassemi in all documents and publicity -// pertaining to direct or indirect use of this code or its derivatives. +// 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. diff --git a/SlideMenu/Source/SlideNavigationController.m b/SlideMenu/Source/SlideNavigationController.m index d9cd88e..4b2f92c 100644 --- a/SlideMenu/Source/SlideNavigationController.m +++ b/SlideMenu/Source/SlideNavigationController.m @@ -7,12 +7,12 @@ // // https://github.com/aryaxt/iOS-Slide-Menu // -// Permission to use, copy, modify and distribute this software and its documentation -// is hereby granted, provided that both the copyright notice and this permission -// notice appear in all copies of the software, derivative works or modified versions, -// and any portions thereof, and that both notices appear in supporting documentation, -// and that credit is given to Aryan Ghassemi in all documents and publicity -// pertaining to direct or indirect use of this code or its derivatives. +// 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. diff --git a/iOS-Slide-Menu.podspec b/iOS-Slide-Menu.podspec new file mode 100644 index 0000000..3153309 --- /dev/null +++ b/iOS-Slide-Menu.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = 'iOS-Slide-Menu' + s.version = '0.0.1' + s.summary = 'A Slide Menu for iOS' + s.homepage = 'https://github.com/aryaxt/iOS-Slide-Menu' + s.dependency 'WEPopover', '~> 1.0.0' + s.license = { + :type => 'MIT', + :file => 'License.txt' + } + s.author = {'Aryan Gh' => 'https://github.com/aryaxt/iOS-Slide-Menu'} + s.source = {:git => 'https://github.com/aryaxt/iOS-Slide-Menu.git', :tag => '0.0.1'} + s.platform = :ios, '6.0' + s.source_files = 'SlideMenu/Source/*.{h,m}' + s.resources = ['SlideMenu/Source/Assets/**/*'] + s.framework = 'Foundation', 'UIKit' + s.requires_arc = true +end