├── .gitignore ├── .rspec ├── .travis.yml ├── Appraisals ├── CHANGELOG.rdoc ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.rdoc ├── Rakefile ├── gemfiles ├── .bundle │ └── config ├── 4.0.gemfile ├── 4.0.gemfile.lock ├── 4.1.gemfile ├── 4.1.gemfile.lock ├── 4.2.gemfile ├── 4.2.gemfile.lock ├── 5.2.gemfile ├── 5.2.gemfile.lock ├── 6.0.gemfile └── 6.0.gemfile.lock ├── init.rb ├── lib ├── nilify_blanks.rb └── nilify_blanks │ ├── matchers.rb │ ├── railtie.rb │ └── version.rb ├── nilify_blanks.gemspec ├── rails └── init.rb └── spec ├── db ├── database.yml └── schema.rb ├── nilify_blanks_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite3 2 | pkg 3 | *.gem 4 | spec/examples.txt 5 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/.rspec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/CHANGELOG.rdoc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_RETRY: "1" 3 | -------------------------------------------------------------------------------- /gemfiles/4.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/4.0.gemfile -------------------------------------------------------------------------------- /gemfiles/4.0.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/4.0.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/4.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/4.1.gemfile -------------------------------------------------------------------------------- /gemfiles/4.1.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/4.1.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/4.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/4.2.gemfile -------------------------------------------------------------------------------- /gemfiles/4.2.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/4.2.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/5.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/5.2.gemfile -------------------------------------------------------------------------------- /gemfiles/5.2.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/5.2.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/6.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/6.0.gemfile -------------------------------------------------------------------------------- /gemfiles/6.0.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/gemfiles/6.0.gemfile.lock -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/init.rb -------------------------------------------------------------------------------- /lib/nilify_blanks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/lib/nilify_blanks.rb -------------------------------------------------------------------------------- /lib/nilify_blanks/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/lib/nilify_blanks/matchers.rb -------------------------------------------------------------------------------- /lib/nilify_blanks/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/lib/nilify_blanks/railtie.rb -------------------------------------------------------------------------------- /lib/nilify_blanks/version.rb: -------------------------------------------------------------------------------- 1 | module NilifyBlanks 2 | VERSION = "1.4.0" 3 | end 4 | -------------------------------------------------------------------------------- /nilify_blanks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/nilify_blanks.gemspec -------------------------------------------------------------------------------- /rails/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/rails/init.rb -------------------------------------------------------------------------------- /spec/db/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/spec/db/database.yml -------------------------------------------------------------------------------- /spec/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/spec/db/schema.rb -------------------------------------------------------------------------------- /spec/nilify_blanks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/spec/nilify_blanks_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenben/nilify_blanks/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------