fera-api 0.1.0 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83807e83ab901ad55674c52bad255fbdd28f3b836d3f0f0cec9e6d89706c7b9a
4
- data.tar.gz: 95ef78772948857fa52d558e2fe41d40d733ebaf98c9758ecb51629526108ef9
3
+ metadata.gz: 5f5fcef6bfad094e9853066b852f6992540e9321015531350e7bc6b02b94d71e
4
+ data.tar.gz: eff0b267a65ad12bbb8bb42c24c42409224774e1e45a53005e1fecf0b0be5fa2
5
5
  SHA512:
6
- metadata.gz: c3c2d2272a78519eec6fe20f44a34604cbd52de17147f9c1fcd258534e0a852e40be5b454bcfe4c960c818341ceda9083bbd41af0af4e1b74cddc61fc1a4296a
7
- data.tar.gz: d678db7fd72623971f81da4d6a7ce6be13ce46dc486ba061f233008b8cb115360a54dc05bc169b4de3d8f9b20eac1b2106e8833b9d91f624e3b43ab343c5df9d
6
+ metadata.gz: d0e8f790bdcced7f48af3b8d0f2e59773e3a69ec429b584068ad5d769cdb39835b87c4301f012ed3da06af8b9ffecb1e21e5ce69e94265472473be543996bb46
7
+ data.tar.gz: 49380fcbb2c591cb0c7c7c730e38bde23a17f3ce1ab59af08c3b6e340700932bc5219af9c11a0bc55e92201ccba8dcd9ada8ee053edae6f3a0faf656967434fe
data/.rubocop.yml CHANGED
@@ -1,56 +1,10 @@
1
- Style/StringLiterals:
2
- Enabled: true
3
- EnforcedStyle: double_quotes
4
- Style/StringLiteralsInInterpolation:
5
- Enabled: true
6
- EnforcedStyle: double_quotes
7
- Style/FrozenStringLiteralComment:
8
- Enabled: false
9
- Layout/LeadingCommentSpace:
10
- Enabled: false
11
- Layout/LineLength:
12
- Max: 200
13
- # If AbcSize > 50, really really really really really really really complex
14
- Metrics/AbcSize:
15
- Max: 50
16
- # Use the default setting
17
- Metrics/BlockNesting:
18
- Enabled: true
19
- Metrics/BlockLength:
20
- Max: 200
21
- Exclude:
22
- # RuboCop's default
23
- - 'Rakefile'
24
- - '**/*.rake'
25
- - 'spec/**/*.rb'
26
- # In many cases, config/routes.rb has very long blocks
27
- - 'config/routes.rb'
28
- Metrics/ClassLength:
29
- Enabled: false
30
- Metrics/CyclomaticComplexity:
31
- Max: 30
32
- Metrics/MethodLength:
33
- Enabled: false
34
- Metrics/ModuleLength:
35
- Enabled: false
36
- Metrics/ParameterLists:
37
- Enabled: true
38
- Max: 4
39
- Metrics/PerceivedComplexity:
40
- Enabled: false
41
- Layout/TrailingEmptyLines:
42
- Enabled: false
43
- Layout/TrailingWhitespace:
44
- Enabled: false
45
- Layout/BlockAlignment:
46
- Enabled: false
47
- Layout/DefEndAlignment:
48
- Enabled: false
49
- Layout/EndAlignment:
50
- Enabled: false
51
- Layout/ClosingHeredocIndentation:
52
- Enabled: false
53
- Layout/LeadingEmptyLines:
54
- Enabled: false
55
- Layout/SpaceInsideStringInterpolation:
56
- EnforcedStyle: space
1
+ inherit_from:
2
+ - 'https://raw.githubusercontent.com/feracommerce/code-standards/master/.rubocop.yml'
3
+ - 'https://raw.githubusercontent.com/feracommerce/code-standards/master/.rubocop-rspec.yml'
4
+ inherit_mode:
5
+ merge:
6
+ - Exclude
7
+ AllCops:
8
+ TargetRubyVersion: 2.3
9
+ require:
10
+ - rubocop-rspec
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7.6
data/.spellr.yml ADDED
@@ -0,0 +1,9 @@
1
+ includes:
2
+ - lib/**/*
3
+ excludes:
4
+ - node_modules/**/*
5
+ - app/**/*.min*
6
+ - "**/*.map"
7
+ word_minimum_length: 4 # any words shorter than this will be ignored
8
+ key_minimum_length: 6 # any strings shorter than this won't be considered non-word strings
9
+ key_heuristic_weight: 5 # higher values mean strings are more likely to be considered words or non-words by the classifier.