├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rspec ├── Gemfile ├── MIT-LICENSE ├── README.md ├── html_truncator.gemspec ├── lib ├── html_truncator.rb └── html_truncator │ └── version.rb └── spec └── html_truncator_spec.rb /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nono/HTML-Truncator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | Gemfile.lock 3 | pkg 4 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nono/HTML-Truncator/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nono/HTML-Truncator/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nono/HTML-Truncator/HEAD/README.md -------------------------------------------------------------------------------- /html_truncator.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nono/HTML-Truncator/HEAD/html_truncator.gemspec -------------------------------------------------------------------------------- /lib/html_truncator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nono/HTML-Truncator/HEAD/lib/html_truncator.rb -------------------------------------------------------------------------------- /lib/html_truncator/version.rb: -------------------------------------------------------------------------------- 1 | class HTML_Truncator 2 | VERSION = "0.4.2" 3 | end 4 | -------------------------------------------------------------------------------- /spec/html_truncator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nono/HTML-Truncator/HEAD/spec/html_truncator_spec.rb --------------------------------------------------------------------------------