| 1234567891011121314151617181920212223 | 
							- require 'json'
 - 
 - package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
 - 
 - Pod::Spec.new do |s|
 -   s.name           = "RNThumbnail"
 -   s.version        = package['version']
 -   s.summary        = package['description']
 -   s.description    = package['description']
 -   s.license        = package['license']
 -   s.author         = package['author']
 -   s.homepage       = "https://github.com/phuochau/react-native-thumbnail/#readme"
 -   s.source         = { :git => 'https://github.com/phuochau/react-native-thumbnail.git' }
 - 
 -   s.requires_arc   = true
 -   s.platform       = :ios, '7.0'
 - 
 -   s.preserve_paths = 'README.md', 'package.json', 'index.js'
 -   s.source_files   = 'ios/**/*.{h,m}'
 - 
 -   s.dependency 'React'
 - end
 
 
  |