├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── lib ├── nc.rb ├── nc_fail.rb └── nc_first_fail.rb ├── rspec-nc.gemspec └── spec ├── nc_fail_spec.rb ├── nc_first_fail_spec.rb ├── nc_spec.rb └── test.rb /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | pkg 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/nc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/lib/nc.rb -------------------------------------------------------------------------------- /lib/nc_fail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/lib/nc_fail.rb -------------------------------------------------------------------------------- /lib/nc_first_fail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/lib/nc_first_fail.rb -------------------------------------------------------------------------------- /rspec-nc.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/rspec-nc.gemspec -------------------------------------------------------------------------------- /spec/nc_fail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/spec/nc_fail_spec.rb -------------------------------------------------------------------------------- /spec/nc_first_fail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/spec/nc_first_fail_spec.rb -------------------------------------------------------------------------------- /spec/nc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/spec/nc_spec.rb -------------------------------------------------------------------------------- /spec/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twe4ked/rspec-nc/HEAD/spec/test.rb --------------------------------------------------------------------------------