Skip to content

Commit

Permalink
Add 3rd-parties they're running to auto test if file has been changed
Browse files Browse the repository at this point in the history
  • Loading branch information
nishigori committed Jan 5, 2014
1 parent 6ef6af9 commit c06d91f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,4 +1,5 @@
language: ruby
rvm:
- 1.9.3
bundler_args: --without development
script: rake ci
9 changes: 9 additions & 0 deletions Gemfile
@@ -1,2 +1,11 @@
source 'https://rubygems.org'
gem 'vim-flavor', '~> 1.1'

group :development do
gem 'guard'
gem 'guard-rake'

gem 'growl' # Runs on Mac OS X
gem 'libnotify' # Runs on Linux, FreeBSD, OpenBSD and Solaris
gem 'rb-notifu' # Runs on Windows
end
3 changes: 3 additions & 0 deletions Guardfile
@@ -0,0 +1,3 @@
guard 'rake', :task => 'test' do
watch(%r{^(test|plugin|autoload)/.+$})
end

0 comments on commit c06d91f

Please sign in to comment.