├── .github └── FUNDING.yml ├── .rspec ├── Gemfile ├── LICENSE.txt ├── README.md ├── lib └── paralines.rb ├── paralines.gemspec ├── sample_output.gif └── spec ├── main_sample.rb └── paralines_spec.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/README.md -------------------------------------------------------------------------------- /lib/paralines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/lib/paralines.rb -------------------------------------------------------------------------------- /paralines.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/paralines.gemspec -------------------------------------------------------------------------------- /sample_output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/sample_output.gif -------------------------------------------------------------------------------- /spec/main_sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/spec/main_sample.rb -------------------------------------------------------------------------------- /spec/paralines_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inversion-des/paralines/HEAD/spec/paralines_spec.rb --------------------------------------------------------------------------------