├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── README_en.md ├── Rakefile ├── cocoapods-project-hmap.gemspec └── lib ├── cocoapods-project-hmap.rb ├── cocoapods-project-hmap ├── gem_version.rb ├── hmap_generator.rb ├── pod_target.rb ├── podfile_dsl.rb ├── post_install_hook_context.rb └── xcconfig.rb └── cocoapods_plugin.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | *.gem 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/README_en.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-project-hmap.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/cocoapods-project-hmap.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-project-hmap.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-project-hmap/gem_version' 2 | -------------------------------------------------------------------------------- /lib/cocoapods-project-hmap/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsProjectHmap 2 | VERSION = "0.0.6" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods-project-hmap/hmap_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/lib/cocoapods-project-hmap/hmap_generator.rb -------------------------------------------------------------------------------- /lib/cocoapods-project-hmap/pod_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/lib/cocoapods-project-hmap/pod_target.rb -------------------------------------------------------------------------------- /lib/cocoapods-project-hmap/podfile_dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/lib/cocoapods-project-hmap/podfile_dsl.rb -------------------------------------------------------------------------------- /lib/cocoapods-project-hmap/post_install_hook_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/lib/cocoapods-project-hmap/post_install_hook_context.rb -------------------------------------------------------------------------------- /lib/cocoapods-project-hmap/xcconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/lib/cocoapods-project-hmap/xcconfig.rb -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSAppTeam/cocoapods-project-hmap/HEAD/lib/cocoapods_plugin.rb --------------------------------------------------------------------------------