├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── bin └── xcpretty-profiler-formatter ├── lib └── profiler_formatter.rb └── xcpretty-profiler-formatter.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | .gem 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.0.1 2 | 3 | * Initial version 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larslockefeer/xcpretty-profiler-formatter/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larslockefeer/xcpretty-profiler-formatter/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larslockefeer/xcpretty-profiler-formatter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larslockefeer/xcpretty-profiler-formatter/HEAD/README.md -------------------------------------------------------------------------------- /bin/xcpretty-profiler-formatter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larslockefeer/xcpretty-profiler-formatter/HEAD/bin/xcpretty-profiler-formatter -------------------------------------------------------------------------------- /lib/profiler_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larslockefeer/xcpretty-profiler-formatter/HEAD/lib/profiler_formatter.rb -------------------------------------------------------------------------------- /xcpretty-profiler-formatter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larslockefeer/xcpretty-profiler-formatter/HEAD/xcpretty-profiler-formatter.gemspec --------------------------------------------------------------------------------