├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── to_nil.rb └── to_nil │ └── version.rb ├── mr_to_nil-0.1.42.gem ├── spec ├── spec_helper.rb └── to_nil_spec.rb ├── to_nil-0.1.42.gem └── to_nil.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2.0 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ![Kek](http://i.imgur.com/AGKiVY6.jpg "Kek") -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/to_nil.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/lib/to_nil.rb -------------------------------------------------------------------------------- /lib/to_nil/version.rb: -------------------------------------------------------------------------------- 1 | module ToNil 2 | VERSION = "0.1.42" 3 | end 4 | -------------------------------------------------------------------------------- /mr_to_nil-0.1.42.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/mr_to_nil-0.1.42.gem -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) 2 | require 'to_nil' 3 | -------------------------------------------------------------------------------- /spec/to_nil_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/spec/to_nil_spec.rb -------------------------------------------------------------------------------- /to_nil-0.1.42.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/to_nil-0.1.42.gem -------------------------------------------------------------------------------- /to_nil.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrThe/to_nil/HEAD/to_nil.gemspec --------------------------------------------------------------------------------