jkf 0.5.1 → 0.5.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.
data/.rubocop.yml DELETED
@@ -1,65 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
- AllCops:
4
- NewCops: enable
5
- DisabledByDefault: true
6
-
7
- require:
8
- - rubocop-rake
9
- - rubocop-rspec
10
-
11
- Style/FrozenStringLiteralComment:
12
- Enabled: true
13
- EnforcedStyle: never
14
-
15
- Layout/HashAlignment:
16
- Enabled: true
17
- EnforcedHashRocketStyle: key # キーが全角文字の場合が多いため
18
-
19
- Lint/AssignmentInCondition:
20
- Enabled: true
21
-
22
- Lint/DuplicateBranch:
23
- Enabled: false # FIXME
24
-
25
- Lint/UnderscorePrefixedVariableName:
26
- Enabled: true
27
-
28
- Naming/AccessorMethodName:
29
- Enabled: true
30
-
31
- RSpec/DescribedClass:
32
- Enabled: true
33
-
34
- Style/ClassAndModuleChildren:
35
- Enabled: true
36
-
37
- Style/Encoding:
38
- Enabled: true
39
-
40
- Style/ExpandPathArguments:
41
- Enabled: true
42
-
43
- Style/HashLikeCase:
44
- Enabled: true
45
-
46
- Style/NegatedIf:
47
- Enabled: true
48
-
49
- Style/RedundantAssignment:
50
- Enabled: true
51
-
52
- Style/RedundantReturn:
53
- Enabled: true
54
-
55
- Style/RescueStandardError:
56
- Enabled: true
57
-
58
- Style/SafeNavigation:
59
- Enabled: true
60
-
61
- Style/StringLiterals:
62
- Enabled: true
63
-
64
- Style/GuardClause:
65
- Enabled: true
data/.rubocop_todo.yml DELETED
@@ -1,7 +0,0 @@
1
- # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2023-06-18 08:39:04 UTC using RuboCop version 1.48.1.
4
- # The point is for the user to remove these configuration records
5
- # one by one as the offenses are removed from the code base.
6
- # Note that changes in the inspected code, or installation of new
7
- # versions of RuboCop, may require this file to be generated again.
data/Guardfile DELETED
@@ -1,27 +0,0 @@
1
- scope(groups: %w(specs))
2
-
3
- directories %w(spec lib)
4
-
5
- group :specs, halt_on_fail: true do
6
- guard :rspec, cmd: 'bundle exec rspec', failed_mode: :keep do
7
- require 'guard/rspec/dsl'
8
- dsl = Guard::RSpec::Dsl.new(self)
9
-
10
- # RSpec files
11
- rspec = dsl.rspec
12
- watch(rspec.spec_helper) { rspec.spec_dir }
13
- watch(rspec.spec_support) { rspec.spec_dir }
14
- watch(rspec.spec_files)
15
-
16
- # Ruby files
17
- ruby = dsl.ruby
18
- dsl.watch_spec_files_for(ruby.lib_files)
19
- end
20
-
21
- guard :rubocop, all_on_start: false, cli: '--rails' do
22
- watch(%r{.+\.rb$}) { |m| m[0] }
23
- watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
24
- end
25
- end
26
-
27
- # vim: ft=ruby
data/bin/console DELETED
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'jkf'
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- if require 'pry'
11
- Pry.start
12
- else
13
- require 'irb'
14
- IRB.start
15
- end
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here