├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── rake └── rspec ├── data ├── fail.md.suits ├── folder │ ├── proot.md │ └── what.md ├── preso.md.suits ├── preso.md_proper ├── preso_with_variables.md.suits ├── preso_with_variables.md_proper ├── short_test.md └── test.md ├── exe └── kisko-suits ├── kisko-suits.gemspec ├── lib ├── kisko-suits.rb └── kisko-suits │ ├── application.rb │ ├── compiler.rb │ ├── version.rb │ └── watcher.rb └── spec ├── kisko-suits ├── application_spec.rb └── compiler_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/bin/rspec -------------------------------------------------------------------------------- /data/fail.md.suits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/data/fail.md.suits -------------------------------------------------------------------------------- /data/folder/proot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/data/folder/proot.md -------------------------------------------------------------------------------- /data/folder/what.md: -------------------------------------------------------------------------------- 1 | what 2 | -------------------------------------------------------------------------------- /data/preso.md.suits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/data/preso.md.suits -------------------------------------------------------------------------------- /data/preso.md_proper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/data/preso.md_proper -------------------------------------------------------------------------------- /data/preso_with_variables.md.suits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/data/preso_with_variables.md.suits -------------------------------------------------------------------------------- /data/preso_with_variables.md_proper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/data/preso_with_variables.md_proper -------------------------------------------------------------------------------- /data/short_test.md: -------------------------------------------------------------------------------- 1 | Short test file $$another_variable. 2 | -------------------------------------------------------------------------------- /data/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/data/test.md -------------------------------------------------------------------------------- /exe/kisko-suits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/exe/kisko-suits -------------------------------------------------------------------------------- /kisko-suits.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/kisko-suits.gemspec -------------------------------------------------------------------------------- /lib/kisko-suits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/lib/kisko-suits.rb -------------------------------------------------------------------------------- /lib/kisko-suits/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/lib/kisko-suits/application.rb -------------------------------------------------------------------------------- /lib/kisko-suits/compiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/lib/kisko-suits/compiler.rb -------------------------------------------------------------------------------- /lib/kisko-suits/version.rb: -------------------------------------------------------------------------------- 1 | module KiskoSuits 2 | VERSION = "0.3.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/kisko-suits/watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/lib/kisko-suits/watcher.rb -------------------------------------------------------------------------------- /spec/kisko-suits/application_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/spec/kisko-suits/application_spec.rb -------------------------------------------------------------------------------- /spec/kisko-suits/compiler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/spec/kisko-suits/compiler_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiskolabs/kisko-suits/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------