-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inherit from Base formatter instead of Documentation
- Loading branch information
1 parent
116f170
commit d9773c2
Showing
8 changed files
with
19 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--color | ||
--require spec_helper | ||
--format documentation | ||
--format RSpec::Github::Formatter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
require 'rspec/github/version' | ||
require 'rspec/github/formatter' | ||
|
||
module Rspec | ||
module RSpec | ||
module Github | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
module Rspec | ||
module RSpec | ||
module Github | ||
VERSION = '1.0.0.develop' | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ require_relative 'lib/rspec/github/version' | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'rspec-github' | ||
spec.version = Rspec::Github::VERSION | ||
spec.version = RSpec::Github::VERSION | ||
spec.authors = ['Stef Schenkelaars'] | ||
spec.email = ['[email protected]'] | ||
|
||
|
@@ -21,6 +21,6 @@ Gem::Specification.new do |spec| | |
# Specify which files should be added to the gem when it is released. | ||
spec.files = Dir['{lib}/**/*'] | ||
|
||
spec.add_development_dependency 'rspec', '~> 3.0' | ||
spec.add_runtime_dependency 'rspec-core', '~> 3.0' | ||
spec.add_development_dependency 'rubocop', '~> 0.81.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters