Commit 606499f

mo khan <mo@mokhan.ca>
2013-05-23 04:35:41
add travis ci configuration
1 parent 14efe1a
Changed files (2)
.travis.yml
@@ -0,0 +1,3 @@
+language: ruby
+rvm:
+- 2.0.0
Rakefile
@@ -1,1 +1,7 @@
 require "bundler/gem_tasks"
+
+task :default => :spec
+
+task :spec do
+  system 'bundle exec rspec spec'
+end