├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── HISTORY ├── LICENSE ├── README.md ├── Rakefile ├── benchmark └── verification.rb ├── lib └── rspec │ ├── fire.rb │ └── fire │ ├── configuration.rb │ └── legacy.rb ├── rspec-fire.gemspec └── spec ├── fire_double_spec.rb ├── gemfiles └── rspec-2 └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | spec/gemfiles/*.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/HISTORY -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmark/verification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/benchmark/verification.rb -------------------------------------------------------------------------------- /lib/rspec/fire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/lib/rspec/fire.rb -------------------------------------------------------------------------------- /lib/rspec/fire/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/lib/rspec/fire/configuration.rb -------------------------------------------------------------------------------- /lib/rspec/fire/legacy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/lib/rspec/fire/legacy.rb -------------------------------------------------------------------------------- /rspec-fire.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/rspec-fire.gemspec -------------------------------------------------------------------------------- /spec/fire_double_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/spec/fire_double_spec.rb -------------------------------------------------------------------------------- /spec/gemfiles/rspec-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/spec/gemfiles/rspec-2 -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaviershay/rspec-fire/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------