Skip to content

fajarmf/Rails-Autotester

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Guard::Reloader

Reloader guard automatically reload file definition and launch proper tests when files are modified or created.

Install

Please be sure to have Guard and Test::Unit installed before continue.

If you're using Bundler, add it to your Gemfile (inside the development group):

gem 'guard-reloader'

and run:

$ bundle install

or manually install the gem:

$ gem install guard-reloader

Add Guard definition to your Guardfile by running this command:

$ guard init reloader

Usage

$ cd [path-to-your-rails-project]
$ guard

Guardfile

Guard::Reloader at the moment support only modification in model and controller.

guard 'reloader' do
  watch(%r{^app/models/(.+)\.rb$})
  watch(%r{^test/unit/(.+)\.rb$})
  watch(%r{^app/controllers/(.+)\.rb$})
  watch(%r{^test/functional/(.+)\.rb$})
end

Please read the Guard documentation for more info about the Guardfile DSL.

Author

Fajar Firdaus

Kudos

Many thanks to Watchmen member.

About

automaticcaly run tests when there are changes to files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages