├── .document ├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── HISTORY.md ├── LICENSE ├── README.md ├── Rakefile ├── bin └── typogruby ├── features ├── caps.feature ├── ignoring.feature ├── inputs.feature ├── selective_filtering.feature ├── simple.feature └── support │ └── env.rb ├── lib ├── characters.txt ├── haml │ └── filters │ │ └── typogruby.rb ├── typogruby.rb └── version.rb ├── test └── test_typogruby.rb └── typogruby.gemspec /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/typogruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/bin/typogruby -------------------------------------------------------------------------------- /features/caps.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/features/caps.feature -------------------------------------------------------------------------------- /features/ignoring.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/features/ignoring.feature -------------------------------------------------------------------------------- /features/inputs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/features/inputs.feature -------------------------------------------------------------------------------- /features/selective_filtering.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/features/selective_filtering.feature -------------------------------------------------------------------------------- /features/simple.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/features/simple.feature -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /lib/characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/lib/characters.txt -------------------------------------------------------------------------------- /lib/haml/filters/typogruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/lib/haml/filters/typogruby.rb -------------------------------------------------------------------------------- /lib/typogruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/lib/typogruby.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- 1 | module Typogruby 2 | VERSION = '1.0.18' 3 | end 4 | -------------------------------------------------------------------------------- /test/test_typogruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/test/test_typogruby.rb -------------------------------------------------------------------------------- /typogruby.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/typogruby/HEAD/typogruby.gemspec --------------------------------------------------------------------------------