├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── liferaft.rb └── liferaft │ ├── gem_version.rb │ └── version.rb ├── liferaft.gemspec └── spec ├── comparison_spec.rb ├── spec_helper.rb └── version_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/liferaft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/lib/liferaft.rb -------------------------------------------------------------------------------- /lib/liferaft/gem_version.rb: -------------------------------------------------------------------------------- 1 | module Liferaft 2 | VERSION = '0.0.6'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/liferaft/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/lib/liferaft/version.rb -------------------------------------------------------------------------------- /liferaft.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/liferaft.gemspec -------------------------------------------------------------------------------- /spec/comparison_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/spec/comparison_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segiddins/liferaft/HEAD/spec/version_spec.rb --------------------------------------------------------------------------------