├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── cocoapods-TSPodfileTimeWatch.gemspec ├── lib ├── cocoapods-TSPodfileTimeWatch.rb ├── cocoapods-TSPodfileTimeWatch │ ├── command.rb │ ├── command │ │ └── TSPodfileTimeWatch.rb │ └── gem_version.rb └── cocoapods_plugin.rb └── spec ├── command └── TSPodfileTimeWatch_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-TSPodfileTimeWatch.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/cocoapods-TSPodfileTimeWatch.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-TSPodfileTimeWatch.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-TSPodfileTimeWatch/gem_version' 2 | -------------------------------------------------------------------------------- /lib/cocoapods-TSPodfileTimeWatch/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/lib/cocoapods-TSPodfileTimeWatch/command.rb -------------------------------------------------------------------------------- /lib/cocoapods-TSPodfileTimeWatch/command/TSPodfileTimeWatch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/lib/cocoapods-TSPodfileTimeWatch/command/TSPodfileTimeWatch.rb -------------------------------------------------------------------------------- /lib/cocoapods-TSPodfileTimeWatch/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsTspodfiletimewatch 2 | VERSION = "0.0.6" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /spec/command/TSPodfileTimeWatch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/spec/command/TSPodfileTimeWatch_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxr0715/cocoapods-TSPodfileTimeWatch/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------