Skip to content

Commit

Permalink
[Fix] Reachability
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiopelosin committed Jun 27, 2012
1 parent 91a5887 commit 61306c9
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions Reachability/3.0.0/Reachability.podspec
@@ -1,13 +1,25 @@
license = <<-EOF
Copyright (c) 2011, Tony Million.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
EOF

Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'Reachability' s.name = 'Reachability'
s.version = '3.0.0' s.version = '3.0.0'
s.license = 'BSD' s.license = { :type => 'BSD', :text => license }
s.homepage = 'https://github.com/tonymillion/Reachability' s.homepage = 'https://github.com/tonymillion/Reachability'
s.authors = { 'Tony Million' => 'tonymillion@gmail.com' } s.authors = { 'Tony Million' => 'tonymillion@gmail.com' }
s.summary = 'ARC and GCD Compatible Reachability Class for iOS and OS X. Drop in replacement for Apple Reachability.' s.summary = 'ARC and GCD Compatible Reachability Class for iOS and OS X. Drop in replacement for Apple Reachability.'
s.source = { :git => 'https://github.com/tonymillion/Reachability.git', :tag => 'v3.0.0' } s.source = { :git => 'https://github.com/tonymillion/Reachability.git', :tag => 'v3.0.0' }
s.source_files = 'Reachability.{h,m}' s.source_files = 'Reachability.{h,m}'
s.clean_paths = 'iOSReachabilityTestARC', 'MacOSReachabilityTestARC'
s.framework = 'SystemConfiguration' s.framework = 'SystemConfiguration'
s.requires_arc = true s.requires_arc = true
end end

0 comments on commit 61306c9

Please sign in to comment.