Skip to content

Commit

Permalink
making guard rspec jruby self hosting, wonderbar
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettheaver committed Jul 5, 2012
1 parent 8dc6a02 commit bfcd8d9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
*.gem
.session
Gemfile.lock
1 change: 1 addition & 0 deletions .jrubyrc
@@ -0,0 +1 @@
compat.version=1.9
2 changes: 2 additions & 0 deletions .rspec
@@ -0,0 +1,2 @@
--tty
--color
2 changes: 2 additions & 0 deletions Gemfile
@@ -0,0 +1,2 @@
source :rubygems
gemspec
5 changes: 5 additions & 0 deletions Guardfile
@@ -0,0 +1,5 @@
interactor :simple
guard 'rspec-jruby' do
watch(%r(^spec/.+_spec\.rb$))
watch(%r(^lib/(.+)\.rb$)) { |m| "spec/lib/#{m[1]}_spec.rb" }
end

0 comments on commit bfcd8d9

Please sign in to comment.