howzit 2.1.18 → 2.1.21

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.
data/.rubocop.yml DELETED
@@ -1,48 +0,0 @@
1
- require:
2
- - rubocop-rspec
3
- - rubocop-rake
4
-
5
- AllCops:
6
- Include:
7
- - Gemfile
8
- - Guardfile
9
- - Rakefile
10
- - bin/howzit
11
- - lib/**/*.rb
12
-
13
- Style/StringLiterals:
14
- Enabled: true
15
- EnforcedStyle: single_quotes
16
-
17
- Style/StringLiteralsInInterpolation:
18
- Enabled: true
19
- EnforcedStyle: single_quotes
20
-
21
- Layout/LineLength:
22
- Max: 120
23
-
24
- Metrics/MethodLength:
25
- Max: 45
26
-
27
- Metrics/BlockLength:
28
- Max: 45
29
- Exclude:
30
- - Rakefile
31
- - bin/howzit
32
- - lib/*.rb
33
-
34
- Metrics/ClassLength:
35
- Max: 300
36
-
37
- Metrics/PerceivedComplexity:
38
- Max: 30
39
-
40
- Metrics/AbcSize:
41
- Max: 45
42
-
43
- Metrics/CyclomaticComplexity:
44
- Max: 20
45
-
46
- Style/RegexpLiteral:
47
- Exclude:
48
- - Guardfile
data/.travis.yml DELETED
@@ -1,17 +0,0 @@
1
- ---
2
- language: ruby
3
- sudo: required
4
- dist: trusty
5
- cache: bundler
6
- rvm:
7
- - ruby-2.6.4
8
- - ruby-2.7.0
9
- - ruby-3.0.1
10
- install:
11
- - gem install bundler --version '2.2.29'
12
- - bundle install
13
- script: "bundle exec rspec spec --exclude-pattern 'cli*'"
14
- branches:
15
- only:
16
- - main
17
- - develop
data/.yardopts DELETED
@@ -1,6 +0,0 @@
1
- --markup=markdown
2
- lib/**/*.rb
3
- -
4
- README.md
5
- CHANGELOG.md
6
- LICENSE.txt
data/lib/.rubocop.yml DELETED
@@ -1 +0,0 @@
1
- inherit_from: ../.rubocop.yml
data/spec/.rubocop.yml DELETED
@@ -1,4 +0,0 @@
1
- inherit_from: ../.rubocop.yml
2
-
3
- Style/StringLiterals:
4
- Enabled: false