Skip to content

Commit b14f058

Browse files
[JAY-590] Initial commit for Github release
Created from github-prep@0fbd4cb Change-Id: If5e02bb7c16e53d280dfe252b5ac3685fbbed027
0 parents  commit b14f058

File tree

172 files changed

+18174
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+18174
-0
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/.bundle/
2+
/.yardoc
3+
/_yardoc/
4+
/coverage/
5+
/doc/
6+
/pkg/
7+
/spec/reports/
8+
/tmp/
9+
10+
# rspec failure tracking
11+
.rspec_status
12+
Gemfile.lock

.reek.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
### Generic smell configuration
2+
3+
detectors:
4+
TooManyInstanceVariables:
5+
max_instance_variables: 10
6+
TooManyStatements:
7+
max_statements: 10
8+
DuplicateMethodCall:
9+
max_calls: 3
10+
NestedIterators:
11+
max_allowed_nesting: 2
12+
UncommunicativeVariableName:
13+
accept: [_, e]
14+
LongParameterList:
15+
max_params: 5

.rspec

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
--format documentation
2+
--color
3+
--require spec_helper
4+
--exclude-pattern "spec/end-to-end/**/*"

.rubocop.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
AllCops:
2+
NewCops: enable
3+
Exclude:
4+
- spec/spec_helper.rb
5+
Layout/LineLength:
6+
Max: 120
7+
Metrics/BlockLength:
8+
Exclude:
9+
- jay_api.gemspec
10+
- spec/**/*
11+
Style/FrozenStringLiteralComment:
12+
Exclude:
13+
- bin/console
14+
Metrics/MethodLength:
15+
Max: 15
16+
Gemspec/RequireMFA:
17+
Enabled: false

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.7.7

0 commit comments

Comments
 (0)