├── .gitignore ├── .ruby-version ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── itools ├── itools.gemspec └── lib ├── itools.rb └── itools ├── class_unuse_finder.rb ├── count_code_line.rb ├── file_handle.rb ├── find_unuse_img.rb ├── get_size.rb ├── git_sets.rb ├── link_map.rb ├── podfile_tiled.rb ├── string_searcher.rb ├── temple-commit-msg.dat └── version.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.4.0 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/itools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/bin/itools -------------------------------------------------------------------------------- /itools.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/itools.gemspec -------------------------------------------------------------------------------- /lib/itools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools.rb -------------------------------------------------------------------------------- /lib/itools/class_unuse_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/class_unuse_finder.rb -------------------------------------------------------------------------------- /lib/itools/count_code_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/count_code_line.rb -------------------------------------------------------------------------------- /lib/itools/file_handle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/file_handle.rb -------------------------------------------------------------------------------- /lib/itools/find_unuse_img.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/find_unuse_img.rb -------------------------------------------------------------------------------- /lib/itools/get_size.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/get_size.rb -------------------------------------------------------------------------------- /lib/itools/git_sets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/git_sets.rb -------------------------------------------------------------------------------- /lib/itools/link_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/link_map.rb -------------------------------------------------------------------------------- /lib/itools/podfile_tiled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/podfile_tiled.rb -------------------------------------------------------------------------------- /lib/itools/string_searcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/string_searcher.rb -------------------------------------------------------------------------------- /lib/itools/temple-commit-msg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottZg/itools/HEAD/lib/itools/temple-commit-msg.dat -------------------------------------------------------------------------------- /lib/itools/version.rb: -------------------------------------------------------------------------------- 1 | module Itools 2 | VERSION = "1.2.0" 3 | 4 | end 5 | --------------------------------------------------------------------------------