├── .gitignore ├── .kick ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.rdoc ├── Rakefile ├── TODO.rdoc ├── bin └── kicker ├── images └── kikker.jpg ├── kicker.gemspec ├── lib ├── kicker.rb └── kicker │ ├── callback_chain.rb │ ├── core_ext.rb │ ├── fsevents.rb │ ├── job.rb │ ├── notification.rb │ ├── options.rb │ ├── recipes.rb │ ├── recipes │ ├── could_not_handle_file.rb │ ├── dot_kick.rb │ ├── execute_cli_command.rb │ ├── ignore.rb │ ├── jstest.rb │ ├── rails.rb │ └── ruby.rb │ ├── utils.rb │ └── version.rb ├── rakelib └── gem_release.rake └── spec ├── callback_chain_spec.rb ├── core_ext_spec.rb ├── filesystem_change_spec.rb ├── fixtures └── a_file_thats_reloaded.rb ├── fsevents_spec.rb ├── initialization_spec.rb ├── job_spec.rb ├── kicker_spec.rb ├── notification_spec.rb ├── options_spec.rb ├── recipes ├── could_not_handle_file_spec.rb ├── dot_kick_spec.rb ├── execute_cli_command_spec.rb ├── ignore_spec.rb ├── jstest_spec.rb ├── rails_spec.rb └── ruby_spec.rb ├── recipes_spec.rb ├── spec_helper.rb └── utils_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.kick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/.kick -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/TODO.rdoc -------------------------------------------------------------------------------- /bin/kicker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/bin/kicker -------------------------------------------------------------------------------- /images/kikker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/images/kikker.jpg -------------------------------------------------------------------------------- /kicker.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/kicker.gemspec -------------------------------------------------------------------------------- /lib/kicker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker.rb -------------------------------------------------------------------------------- /lib/kicker/callback_chain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/callback_chain.rb -------------------------------------------------------------------------------- /lib/kicker/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/core_ext.rb -------------------------------------------------------------------------------- /lib/kicker/fsevents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/fsevents.rb -------------------------------------------------------------------------------- /lib/kicker/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/job.rb -------------------------------------------------------------------------------- /lib/kicker/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/notification.rb -------------------------------------------------------------------------------- /lib/kicker/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/options.rb -------------------------------------------------------------------------------- /lib/kicker/recipes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/recipes.rb -------------------------------------------------------------------------------- /lib/kicker/recipes/could_not_handle_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/recipes/could_not_handle_file.rb -------------------------------------------------------------------------------- /lib/kicker/recipes/dot_kick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/recipes/dot_kick.rb -------------------------------------------------------------------------------- /lib/kicker/recipes/execute_cli_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/recipes/execute_cli_command.rb -------------------------------------------------------------------------------- /lib/kicker/recipes/ignore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/recipes/ignore.rb -------------------------------------------------------------------------------- /lib/kicker/recipes/jstest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/recipes/jstest.rb -------------------------------------------------------------------------------- /lib/kicker/recipes/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/recipes/rails.rb -------------------------------------------------------------------------------- /lib/kicker/recipes/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/recipes/ruby.rb -------------------------------------------------------------------------------- /lib/kicker/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/lib/kicker/utils.rb -------------------------------------------------------------------------------- /lib/kicker/version.rb: -------------------------------------------------------------------------------- 1 | class Kicker 2 | VERSION = "3.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /rakelib/gem_release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/rakelib/gem_release.rake -------------------------------------------------------------------------------- /spec/callback_chain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/callback_chain_spec.rb -------------------------------------------------------------------------------- /spec/core_ext_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/core_ext_spec.rb -------------------------------------------------------------------------------- /spec/filesystem_change_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/filesystem_change_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/a_file_thats_reloaded.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/fixtures/a_file_thats_reloaded.rb -------------------------------------------------------------------------------- /spec/fsevents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/fsevents_spec.rb -------------------------------------------------------------------------------- /spec/initialization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/initialization_spec.rb -------------------------------------------------------------------------------- /spec/job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/job_spec.rb -------------------------------------------------------------------------------- /spec/kicker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/kicker_spec.rb -------------------------------------------------------------------------------- /spec/notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/notification_spec.rb -------------------------------------------------------------------------------- /spec/options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/options_spec.rb -------------------------------------------------------------------------------- /spec/recipes/could_not_handle_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/recipes/could_not_handle_file_spec.rb -------------------------------------------------------------------------------- /spec/recipes/dot_kick_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/recipes/dot_kick_spec.rb -------------------------------------------------------------------------------- /spec/recipes/execute_cli_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/recipes/execute_cli_command_spec.rb -------------------------------------------------------------------------------- /spec/recipes/ignore_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/recipes/ignore_spec.rb -------------------------------------------------------------------------------- /spec/recipes/jstest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/recipes/jstest_spec.rb -------------------------------------------------------------------------------- /spec/recipes/rails_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/recipes/rails_spec.rb -------------------------------------------------------------------------------- /spec/recipes/ruby_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/recipes/ruby_spec.rb -------------------------------------------------------------------------------- /spec/recipes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/recipes_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy/kicker/HEAD/spec/utils_spec.rb --------------------------------------------------------------------------------