├── .github
├── dependabot.yml
└── workflows
│ └── ci.yml
├── .gitignore
├── CHANGES.md
├── CODE_OF_CONDUCT.md
├── COMM-LICENSE
├── CONTRIBUTING.md
├── Gemfile
├── LICENSE
├── README.md
├── Rakefile
├── THOUGHTS
├── doc
├── Trb-The-Stack.png
├── operation-2017.png
├── s_hero.png
├── song_operation_create.png
├── song_operation_create_trace.png
└── trb.jpg
├── lib
├── trailblazer.rb
└── trailblazer
│ └── version.rb
├── test
├── test_helper.rb
└── trailblazer_test.rb
└── trailblazer.gemspec
/.github/dependabot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/.github/dependabot.yml
--------------------------------------------------------------------------------
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/.github/workflows/ci.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/.gitignore
--------------------------------------------------------------------------------
/CHANGES.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/CHANGES.md
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/COMM-LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/COMM-LICENSE
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/Gemfile
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/README.md
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/Rakefile
--------------------------------------------------------------------------------
/THOUGHTS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/THOUGHTS
--------------------------------------------------------------------------------
/doc/Trb-The-Stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/doc/Trb-The-Stack.png
--------------------------------------------------------------------------------
/doc/operation-2017.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/doc/operation-2017.png
--------------------------------------------------------------------------------
/doc/s_hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/doc/s_hero.png
--------------------------------------------------------------------------------
/doc/song_operation_create.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/doc/song_operation_create.png
--------------------------------------------------------------------------------
/doc/song_operation_create_trace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/doc/song_operation_create_trace.png
--------------------------------------------------------------------------------
/doc/trb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/doc/trb.jpg
--------------------------------------------------------------------------------
/lib/trailblazer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/lib/trailblazer.rb
--------------------------------------------------------------------------------
/lib/trailblazer/version.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/lib/trailblazer/version.rb
--------------------------------------------------------------------------------
/test/test_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/test/test_helper.rb
--------------------------------------------------------------------------------
/test/trailblazer_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/test/trailblazer_test.rb
--------------------------------------------------------------------------------
/trailblazer.gemspec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trailblazer/trailblazer/HEAD/trailblazer.gemspec
--------------------------------------------------------------------------------