rails_best_practices 1.23.0 → 1.23.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +19 -2
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +3 -5
- data/Gemfile.ruby-2.6 +11 -0
- data/Gemfile.ruby-2.6.lock +130 -0
- data/lib/rails_best_practices/version.rb +1 -1
- data/rails_best_practices.gemspec +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdd81904314b75ffb168757035157e2e28627f890691ee869b567721485bb7ab
|
4
|
+
data.tar.gz: 98bd1b3d60c5a0218af2597f0ddf2a9d82f7375f2fe8466fc11d0f26f2f38e8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7bc62f7d7c9e69b69eadd2abc323aefd5e107135a29e6d91333f178c5f945621eb7b04d030745837335a706b0cd7a6628ec384d28ba407cbebb83e1f938cf1d
|
7
|
+
data.tar.gz: b6c9dfba7e08e08cad07fbc74fcc5c66f3ee24659e07376365afea89b9f6490b98b0c6c4925c74782788369cbdc9788fbb8764607464b16e1c97f34b2835276c
|
data/.github/workflows/main.yml
CHANGED
@@ -14,11 +14,28 @@ on:
|
|
14
14
|
branches: [ master ]
|
15
15
|
|
16
16
|
jobs:
|
17
|
-
|
17
|
+
test_ruby_2_6:
|
18
18
|
runs-on: ubuntu-latest
|
19
19
|
strategy:
|
20
20
|
matrix:
|
21
|
-
ruby-version: ['2.6'
|
21
|
+
ruby-version: ['2.6']
|
22
|
+
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
|
23
|
+
BUNDLE_GEMFILE: Gemfile.ruby-2.6
|
24
|
+
|
25
|
+
steps:
|
26
|
+
- uses: actions/checkout@v2
|
27
|
+
- name: Set up Ruby
|
28
|
+
uses: ruby/setup-ruby@v1
|
29
|
+
with:
|
30
|
+
ruby-version: ${{ matrix.ruby-version }}
|
31
|
+
bundler-cache: true
|
32
|
+
- name: Run tests
|
33
|
+
run: bundle exec rspec spec
|
34
|
+
test_ruby_2_7_above:
|
35
|
+
runs-on: ubuntu-latest
|
36
|
+
strategy:
|
37
|
+
matrix:
|
38
|
+
ruby-version: ['2.7', '3.0', '3.1']
|
22
39
|
|
23
40
|
steps:
|
24
41
|
- uses: actions/checkout@v2
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rails_best_practices (1.23.
|
5
|
-
activesupport
|
4
|
+
rails_best_practices (1.23.1)
|
5
|
+
activesupport
|
6
6
|
code_analyzer (~> 0.5.5)
|
7
7
|
erubis
|
8
8
|
i18n
|
@@ -13,12 +13,11 @@ PATH
|
|
13
13
|
GEM
|
14
14
|
remote: https://rubygems.org/
|
15
15
|
specs:
|
16
|
-
activesupport (
|
16
|
+
activesupport (7.0.2.2)
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
18
|
i18n (>= 1.6, < 2)
|
19
19
|
minitest (>= 5.1)
|
20
20
|
tzinfo (~> 2.0)
|
21
|
-
zeitwerk (~> 2.3)
|
22
21
|
awesome_print (1.8.0)
|
23
22
|
code_analyzer (0.5.5)
|
24
23
|
sexp_processor
|
@@ -105,7 +104,6 @@ GEM
|
|
105
104
|
tins (1.22.2)
|
106
105
|
tzinfo (2.0.4)
|
107
106
|
concurrent-ruby (~> 1.0)
|
108
|
-
zeitwerk (2.5.4)
|
109
107
|
|
110
108
|
PLATFORMS
|
111
109
|
ruby
|
data/Gemfile.ruby-2.6
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rails_best_practices (1.23.1)
|
5
|
+
activesupport
|
6
|
+
code_analyzer (~> 0.5.5)
|
7
|
+
erubis
|
8
|
+
i18n
|
9
|
+
json
|
10
|
+
require_all (~> 3.0)
|
11
|
+
ruby-progressbar
|
12
|
+
|
13
|
+
GEM
|
14
|
+
remote: https://rubygems.org/
|
15
|
+
specs:
|
16
|
+
activesupport (6.1.4.6)
|
17
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
+
i18n (>= 1.6, < 2)
|
19
|
+
minitest (>= 5.1)
|
20
|
+
tzinfo (~> 2.0)
|
21
|
+
zeitwerk (~> 2.3)
|
22
|
+
awesome_print (1.9.2)
|
23
|
+
code_analyzer (0.5.5)
|
24
|
+
sexp_processor
|
25
|
+
coderay (1.1.3)
|
26
|
+
concurrent-ruby (1.1.9)
|
27
|
+
coveralls (0.8.23)
|
28
|
+
json (>= 1.8, < 3)
|
29
|
+
simplecov (~> 0.16.1)
|
30
|
+
term-ansicolor (~> 1.3)
|
31
|
+
thor (>= 0.19.4, < 2.0)
|
32
|
+
tins (~> 1.6)
|
33
|
+
diff-lcs (1.5.0)
|
34
|
+
docile (1.4.0)
|
35
|
+
erubis (2.7.0)
|
36
|
+
ffi (1.15.5)
|
37
|
+
formatador (1.1.0)
|
38
|
+
guard (2.18.0)
|
39
|
+
formatador (>= 0.2.4)
|
40
|
+
listen (>= 2.7, < 4.0)
|
41
|
+
lumberjack (>= 1.0.12, < 2.0)
|
42
|
+
nenv (~> 0.1)
|
43
|
+
notiffany (~> 0.0)
|
44
|
+
pry (>= 0.13.0)
|
45
|
+
shellany (~> 0.0)
|
46
|
+
thor (>= 0.18.1)
|
47
|
+
guard-compat (1.2.1)
|
48
|
+
guard-rspec (4.7.3)
|
49
|
+
guard (~> 2.1)
|
50
|
+
guard-compat (~> 1.1)
|
51
|
+
rspec (>= 2.99.0, < 4.0)
|
52
|
+
haml (5.2.2)
|
53
|
+
temple (>= 0.8.0)
|
54
|
+
tilt
|
55
|
+
i18n (1.9.1)
|
56
|
+
concurrent-ruby (~> 1.0)
|
57
|
+
json (2.6.1)
|
58
|
+
listen (3.7.1)
|
59
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
60
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
61
|
+
lumberjack (1.2.8)
|
62
|
+
method_source (1.0.0)
|
63
|
+
minitest (5.15.0)
|
64
|
+
nenv (0.3.0)
|
65
|
+
notiffany (0.1.3)
|
66
|
+
nenv (~> 0.1)
|
67
|
+
shellany (~> 0.0)
|
68
|
+
pry (0.14.1)
|
69
|
+
coderay (~> 1.1)
|
70
|
+
method_source (~> 1.0)
|
71
|
+
rake (13.0.6)
|
72
|
+
rb-fsevent (0.11.1)
|
73
|
+
rb-inotify (0.10.1)
|
74
|
+
ffi (~> 1.0)
|
75
|
+
require_all (3.0.0)
|
76
|
+
rspec (3.11.0)
|
77
|
+
rspec-core (~> 3.11.0)
|
78
|
+
rspec-expectations (~> 3.11.0)
|
79
|
+
rspec-mocks (~> 3.11.0)
|
80
|
+
rspec-core (3.11.0)
|
81
|
+
rspec-support (~> 3.11.0)
|
82
|
+
rspec-expectations (3.11.0)
|
83
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
84
|
+
rspec-support (~> 3.11.0)
|
85
|
+
rspec-mocks (3.11.0)
|
86
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
87
|
+
rspec-support (~> 3.11.0)
|
88
|
+
rspec-support (3.11.0)
|
89
|
+
ruby-progressbar (1.11.0)
|
90
|
+
sexp_processor (4.16.0)
|
91
|
+
shellany (0.0.1)
|
92
|
+
simplecov (0.16.1)
|
93
|
+
docile (~> 1.1)
|
94
|
+
json (>= 1.8, < 3)
|
95
|
+
simplecov-html (~> 0.10.0)
|
96
|
+
simplecov-html (0.10.2)
|
97
|
+
slim (4.1.0)
|
98
|
+
temple (>= 0.7.6, < 0.9)
|
99
|
+
tilt (>= 2.0.6, < 2.1)
|
100
|
+
sync (0.5.0)
|
101
|
+
temple (0.8.2)
|
102
|
+
term-ansicolor (1.7.1)
|
103
|
+
tins (~> 1.0)
|
104
|
+
thor (1.2.1)
|
105
|
+
tilt (2.0.10)
|
106
|
+
tins (1.31.0)
|
107
|
+
sync
|
108
|
+
tzinfo (2.0.4)
|
109
|
+
concurrent-ruby (~> 1.0)
|
110
|
+
zeitwerk (2.5.4)
|
111
|
+
|
112
|
+
PLATFORMS
|
113
|
+
ruby
|
114
|
+
|
115
|
+
DEPENDENCIES
|
116
|
+
activesupport (~> 6.1.4)
|
117
|
+
awesome_print
|
118
|
+
bundler
|
119
|
+
coveralls
|
120
|
+
guard
|
121
|
+
guard-rspec
|
122
|
+
haml
|
123
|
+
pry
|
124
|
+
rails_best_practices!
|
125
|
+
rake
|
126
|
+
rspec
|
127
|
+
slim
|
128
|
+
|
129
|
+
BUNDLED WITH
|
130
|
+
1.17.3
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.required_ruby_version = '>= 1.9.0'
|
19
19
|
spec.required_rubygems_version = '>= 1.3.6'
|
20
20
|
|
21
|
-
spec.add_runtime_dependency('activesupport'
|
21
|
+
spec.add_runtime_dependency('activesupport')
|
22
22
|
spec.add_runtime_dependency('code_analyzer', '~> 0.5.5')
|
23
23
|
spec.add_runtime_dependency('erubis')
|
24
24
|
spec.add_runtime_dependency('i18n')
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_best_practices
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.23.
|
4
|
+
version: 1.23.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Huang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: code_analyzer
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -207,6 +207,8 @@ files:
|
|
207
207
|
- CHANGELOG.md
|
208
208
|
- Gemfile
|
209
209
|
- Gemfile.lock
|
210
|
+
- Gemfile.ruby-2.6
|
211
|
+
- Gemfile.ruby-2.6.lock
|
210
212
|
- Guardfile
|
211
213
|
- MIT_LICENSE
|
212
214
|
- README.md
|