Thibaut 10 anni fa
parent
commit
34d0d5035d
4 ha cambiato i file con 8 aggiunte e 1 eliminazioni
  1. 1 0
      .ruby-version
  2. 1 0
      .travis.yml
  3. 1 1
      README.md
  4. 5 0
      Rakefile

+ 1 - 0
.ruby-version

@@ -0,0 +1 @@
+2.2.0

+ 1 - 0
.travis.yml

@@ -0,0 +1 @@
+language: ruby

+ 1 - 1
README.md

@@ -1,4 +1,4 @@
-# [DevDocs](http://devdocs.io) — Documentation Browser
+# [DevDocs](http://devdocs.io) [![Build Status](https://travis-ci.org/Thibaut/devdocs.svg?branch=master)](https://travis-ci.org/Thibaut/devdocs)
 
 DevDocs combines multiple API documentations in a fast, organized, and searchable interface.
 

+ 5 - 0
Rakefile

@@ -5,6 +5,11 @@ require 'thor'
 
 $LOAD_PATH.unshift 'lib'
 
+task :default do
+  $LOAD_PATH.unshift 'test'
+  Dir['test/**/*_test.rb'].map(&File.method(:expand_path)).each(&method(:require))
+end
+
 namespace :assets do
   desc 'Compile all assets'
   task :precompile do