Skip to content

Commit ee85b64

Browse files
authored
Merge pull request #52 from darthjee/rspec
Rspec proposal
2 parents 7539e04 + 21fabe5 commit ee85b64

21 files changed

+4744
-17
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
Gemfile.lock
2+
**/*.swp
3+
coverage/

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--require spec_helper
2+
--color

.rubocop.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
require: rubocop-rspec
2+
inherit_from: .rubocop_todo.yml
3+
4+
AllCops:
5+
TargetRubyVersion: 2.5
6+
7+
RSpec/DescribeClass:
8+
Exclude:
9+
- 'spec/**/*_spec.rb'
10+
11+
Metrics/BlockLength:
12+
Exclude:
13+
- 'spec/**/*_spec.rb'

0 commit comments

Comments
 (0)