parent
882fadf0d9
commit
d39613d831
15
License.txt
15
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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
Loading…
Reference in New Issue