├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── VERSION ├── cocoapods-githooks.gemspec ├── githooks-update.sh ├── lib ├── cocoapods-githooks.rb ├── cocoapods_plugin.rb ├── command │ └── githooks.rb └── githooks-sync.rb └── spec ├── cocoapods_githooks_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.3 -------------------------------------------------------------------------------- /cocoapods-githooks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/cocoapods-githooks.gemspec -------------------------------------------------------------------------------- /githooks-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/githooks-update.sh -------------------------------------------------------------------------------- /lib/cocoapods-githooks.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsGitHooks 2 | VERSION = "1.0.3" 3 | end -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /lib/command/githooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/lib/command/githooks.rb -------------------------------------------------------------------------------- /lib/githooks-sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/lib/githooks-sync.rb -------------------------------------------------------------------------------- /spec/cocoapods_githooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/spec/cocoapods_githooks_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VladKorzun/cocoapods-githooks/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------