├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── jemal.gemspec ├── lib ├── jemal.rb └── jemal │ ├── interface.rb │ └── version.rb └── test ├── jemal_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/bin/setup -------------------------------------------------------------------------------- /jemal.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/jemal.gemspec -------------------------------------------------------------------------------- /lib/jemal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/lib/jemal.rb -------------------------------------------------------------------------------- /lib/jemal/interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/lib/jemal/interface.rb -------------------------------------------------------------------------------- /lib/jemal/version.rb: -------------------------------------------------------------------------------- 1 | module Jemal 2 | VERSION = "0.1.1" 3 | end 4 | -------------------------------------------------------------------------------- /test/jemal_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/test/jemal_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/be9/jemal/HEAD/test/test_helper.rb --------------------------------------------------------------------------------