Skip to content

Commit 18d1e2e

Browse files
committed
add test task
1 parent ffbc532 commit 18d1e2e

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--colour
2+
--format documentation

Rakefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
require "bundler/gem_tasks"
2+
3+
require 'rspec/core'
4+
require 'rspec/core/rake_task'
5+
6+
task :default => :spec
7+
8+
RSpec::Core::RakeTask.new(:spec) do |spec|
9+
spec.pattern = FileList['spec/**/*_spec.rb']
10+
end

lib/markup-preview-command/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Markup
22
module Preview
33
module Command
4-
VERSION = "0.0.7"
4+
VERSION = "0.0.8"
55
end
66
end
77
end

0 commit comments

Comments
 (0)