├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── guard-rails_best_practices.gemspec ├── lib └── guard │ ├── rails_best_practices.rb │ └── rails_best_practices │ ├── notifier.rb │ ├── templates │ └── Guardfile │ └── version.rb └── spec ├── guard └── rails_best_practices │ └── notifier_spec.rb ├── spec_helper.rb └── support └── platform_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/Rakefile -------------------------------------------------------------------------------- /guard-rails_best_practices.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/guard-rails_best_practices.gemspec -------------------------------------------------------------------------------- /lib/guard/rails_best_practices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/lib/guard/rails_best_practices.rb -------------------------------------------------------------------------------- /lib/guard/rails_best_practices/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/lib/guard/rails_best_practices/notifier.rb -------------------------------------------------------------------------------- /lib/guard/rails_best_practices/templates/Guardfile: -------------------------------------------------------------------------------- 1 | guard 'rails_best_practices' do 2 | watch(%r{^app/(.+)\.rb$}) 3 | end 4 | -------------------------------------------------------------------------------- /lib/guard/rails_best_practices/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/lib/guard/rails_best_practices/version.rb -------------------------------------------------------------------------------- /spec/guard/rails_best_practices/notifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/spec/guard/rails_best_practices/notifier_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/platform_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logankoester/guard-rails_best_practices/HEAD/spec/support/platform_helper.rb --------------------------------------------------------------------------------