├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── exe └── tflat ├── lib ├── tflat.rb └── tflat │ └── version.rb ├── spec ├── spec_helper.rb └── tflat_spec.rb └── tflat.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/bin/setup -------------------------------------------------------------------------------- /exe/tflat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/exe/tflat -------------------------------------------------------------------------------- /lib/tflat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/lib/tflat.rb -------------------------------------------------------------------------------- /lib/tflat/version.rb: -------------------------------------------------------------------------------- 1 | module Tflat 2 | VERSION = "0.1.9" 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/tflat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/spec/tflat_spec.rb -------------------------------------------------------------------------------- /tflat.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parruda/tflat/HEAD/tflat.gemspec --------------------------------------------------------------------------------