├── .gitignore ├── .rspec ├── .travis.yml ├── Changelog.md ├── Gemfile ├── License.txt ├── README.md ├── Rakefile ├── lib ├── autotest │ ├── discover.rb │ ├── rails_rspec.rb │ └── rspec.rb └── rspec │ ├── autotest.rb │ ├── autotest │ └── version.rb │ └── rails │ └── autotest.rb ├── rspec-autotest.gemspec ├── script ├── functions.sh ├── test_all └── update_rubygems_and_install_bundler └── spec ├── autotest ├── discover_spec.rb ├── failed_results_re_spec.rb ├── rspec_rails_spec.rb └── rspec_spec.rb ├── spec_helper.rb └── support └── matchers.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/.rspec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/Changelog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/Gemfile -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/autotest/discover.rb: -------------------------------------------------------------------------------- 1 | Autotest.add_discovery { "rspec" } 2 | -------------------------------------------------------------------------------- /lib/autotest/rails_rspec.rb: -------------------------------------------------------------------------------- 1 | require 'rspec/rails/autotest' 2 | -------------------------------------------------------------------------------- /lib/autotest/rspec.rb: -------------------------------------------------------------------------------- 1 | require 'rspec/autotest' 2 | -------------------------------------------------------------------------------- /lib/rspec/autotest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/lib/rspec/autotest.rb -------------------------------------------------------------------------------- /lib/rspec/autotest/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/lib/rspec/autotest/version.rb -------------------------------------------------------------------------------- /lib/rspec/rails/autotest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/lib/rspec/rails/autotest.rb -------------------------------------------------------------------------------- /rspec-autotest.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/rspec-autotest.gemspec -------------------------------------------------------------------------------- /script/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/script/functions.sh -------------------------------------------------------------------------------- /script/test_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/script/test_all -------------------------------------------------------------------------------- /script/update_rubygems_and_install_bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/script/update_rubygems_and_install_bundler -------------------------------------------------------------------------------- /spec/autotest/discover_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/spec/autotest/discover_spec.rb -------------------------------------------------------------------------------- /spec/autotest/failed_results_re_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/spec/autotest/failed_results_re_spec.rb -------------------------------------------------------------------------------- /spec/autotest/rspec_rails_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/spec/autotest/rspec_rails_spec.rb -------------------------------------------------------------------------------- /spec/autotest/rspec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/spec/autotest/rspec_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspec/rspec-autotest/HEAD/spec/support/matchers.rb --------------------------------------------------------------------------------