├── .gitignore ├── Appraisals ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemfiles ├── 32.gemfile ├── 40.gemfile └── 42.gemfile ├── ignorable.gemspec ├── lib └── ignorable.rb └── spec ├── ignorable_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/.gitignore -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/Appraisals -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/32.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/gemfiles/32.gemfile -------------------------------------------------------------------------------- /gemfiles/40.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/gemfiles/40.gemfile -------------------------------------------------------------------------------- /gemfiles/42.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/gemfiles/42.gemfile -------------------------------------------------------------------------------- /ignorable.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/ignorable.gemspec -------------------------------------------------------------------------------- /lib/ignorable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/lib/ignorable.rb -------------------------------------------------------------------------------- /spec/ignorable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/spec/ignorable_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthj/ignorable/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------