├── Gemfile ├── Gemfile.lock ├── README.markdown ├── Rakefile ├── lib └── rspec │ └── rails │ └── mocha.rb ├── rspec-rails-mocha.gemspec └── spec └── mocha_spec.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rspec-rails-mocha/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rspec-rails-mocha/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rspec-rails-mocha/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rspec-rails-mocha/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/rspec/rails/mocha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rspec-rails-mocha/HEAD/lib/rspec/rails/mocha.rb -------------------------------------------------------------------------------- /rspec-rails-mocha.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rspec-rails-mocha/HEAD/rspec-rails-mocha.gemspec -------------------------------------------------------------------------------- /spec/mocha_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mislav/rspec-rails-mocha/HEAD/spec/mocha_spec.rb --------------------------------------------------------------------------------