Skip to content

Commit 1e0c438

Browse files
author
Gary Rennie
committed
Added rake task for Travis CI
1 parent dbac02a commit 1e0c438

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Githug
2-
Git Your Game On
2+
Git Your Game On [![Build Status](https://secure.travis-ci.org/Gazler/githug.png?branch=master)](http://travis-ci.org/Gazler/githug)
33

44
##About
55
Githug is designed to give you a practical way of learning git. It has a series of levels, each utilizing git commands to ensure a correct answer.

Rakefile

+5
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
require "bundler/gem_tasks"
2+
require 'rspec/core/rake_task'
3+
4+
RSpec::Core::RakeTask.new(:spec)
5+
6+
task :default => [:spec]

lib/githug/level.rb

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ class Level
77
"commit_ammend", "reset", "checkout_file", "remote", "remote_url",
88
"remote_add", "diff", "blame", "branch", "checkout", "merge",
99
"squash", "contribute"]
10-
>>>>>>> dpick/squash_commits
1110

1211
attr_accessor :level_no, :level_path
1312

0 commit comments

Comments
 (0)