├── .gitignore ├── LICENSE ├── README.md ├── Rakefile ├── bin └── textmood ├── lang ├── da.txt ├── de.txt ├── en.txt ├── es.txt ├── fr.txt ├── jp.txt ├── no_NB.txt ├── ru.txt ├── sv.txt └── symbols.txt ├── lib └── textmood.rb ├── test └── test.rb └── textmood.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/textmood: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/bin/textmood -------------------------------------------------------------------------------- /lang/da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/da.txt -------------------------------------------------------------------------------- /lang/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/de.txt -------------------------------------------------------------------------------- /lang/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/en.txt -------------------------------------------------------------------------------- /lang/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/es.txt -------------------------------------------------------------------------------- /lang/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/fr.txt -------------------------------------------------------------------------------- /lang/jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/jp.txt -------------------------------------------------------------------------------- /lang/no_NB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/no_NB.txt -------------------------------------------------------------------------------- /lang/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/ru.txt -------------------------------------------------------------------------------- /lang/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/sv.txt -------------------------------------------------------------------------------- /lang/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lang/symbols.txt -------------------------------------------------------------------------------- /lib/textmood.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/lib/textmood.rb -------------------------------------------------------------------------------- /test/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/test/test.rb -------------------------------------------------------------------------------- /textmood.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiang/textmood/HEAD/textmood.gemspec --------------------------------------------------------------------------------