最少有三个长期分支
- master: 用于生产环境部署
- testing: 用于测试环境测试
- dev: 用于日常开发
有一些临时分支
| Pod::Spec.new do |s| | |
| s.name = 'JSONKit' | |
| s.version = '1.6' | |
| s.summary = 'A Very High Performance Objective-C JSON Library.' | |
| s.homepage = 'https://github.com/johnezang/JSONKit' | |
| s.author = 'John Engelhart' | |
| s.source = { :git => 'https://github.com/HerrEmrys/JSONKit' } | |
| s.source_files = 'JSONKit.*' | |
| end |
| <?php | |
| /** | |
| * SplClassLoader implementation that implements the technical interoperability | |
| * standards for PHP 5.3 namespaces and class names. | |
| * | |
| * http://groups.google.com/group/php-standards/web/final-proposal | |
| * | |
| * // Example which loads classes for the Doctrine Common package in the | |
| * // Doctrine\Common namespace. |
| #!/usr/bin/env ruby | |
| #coding: utf-8 | |
| require 'yaml' | |
| require 'fileutils' | |
| config_file_path = 'package.yaml' | |
| # get related diretories information & prepare | |
| src = Dir.getwd |
| <?php | |
| /** | |
| * 解压含有文件名为UTF-8编码的zip包,到当前目录 | |
| * | |
| * Mac OS X 系统自带的压缩程序对 zip 文件名用 UTF-8 编码 | |
| * 但 zip 文件头中没有声明 PKZIP 高版本增加的 Unicode 位。 | |
| * Windows 会认为文件名是 ANSI 编码,结果显示乱码。 | |
| * | |
| * @uses zipcorrect.php file.zip |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <style type="text/css"> | |
| * { margin:0; padding:0; } | |
| li { font-size:12px; height: 1.5em;} | |
| </style> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script> |