craby 0.0.4 → 0.0.6
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 +4 -4
- data/.rubocop.yml +6 -4
- data/.standard.yml +1 -1
- data/README.md +1 -1
- data/config/base.yml +1938 -0
- data/lib/craby/version.rb +1 -1
- data/lib/generators/craby/install/templates/.rubocop.yml +4 -4
- data/lib/generators/craby/install/templates/.standard.yml +1 -1
- metadata +4 -7
data/lib/craby/version.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
plugins:
|
2
2
|
- rubocop-rails
|
3
3
|
- rubocop-factory_bot
|
4
4
|
- rubocop-capybara
|
@@ -6,12 +6,12 @@ require:
|
|
6
6
|
- rubocop-rspec_rails
|
7
7
|
|
8
8
|
inherit_gem:
|
9
|
-
|
9
|
+
craby: config/base.yml
|
10
10
|
|
11
11
|
AllCops:
|
12
12
|
NewCops: enable
|
13
|
-
TargetRubyVersion: 3.
|
14
|
-
TargetRailsVersion:
|
13
|
+
TargetRubyVersion: 3.4
|
14
|
+
TargetRailsVersion: 8.0
|
15
15
|
Exclude:
|
16
16
|
- "bin/**/*"
|
17
17
|
- "config/environments/**/*"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
fix: false # default: false
|
2
2
|
parallel: true # default: false
|
3
3
|
format: progress # default: Standard::Formatter
|
4
|
-
ruby_version: 3.3
|
4
|
+
ruby_version: 3.4.3 # default: RUBY_VERSION
|
5
5
|
default_ignores: true # default: true
|
6
6
|
|
7
7
|
ignore: # default: []
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: craby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lavenda Software
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: brakeman
|
@@ -290,7 +289,6 @@ dependencies:
|
|
290
289
|
- - ">="
|
291
290
|
- !ruby/object:Gem::Version
|
292
291
|
version: '0'
|
293
|
-
description:
|
294
292
|
email:
|
295
293
|
- lavenda@lavenda.com.br
|
296
294
|
executables: []
|
@@ -304,6 +302,7 @@ files:
|
|
304
302
|
- Makefile
|
305
303
|
- README.md
|
306
304
|
- Rakefile
|
305
|
+
- config/base.yml
|
307
306
|
- craby.gemspec
|
308
307
|
- lib/craby.rb
|
309
308
|
- lib/craby/capybara.rb
|
@@ -333,7 +332,6 @@ metadata:
|
|
333
332
|
homepage_uri: https://github.com/LavendaSoftware/craby
|
334
333
|
source_code_uri: https://github.com/LavendaSoftware/craby/blob/main/README.md
|
335
334
|
changelog_uri: https://github.com/LavendaSoftware/craby/commits/main
|
336
|
-
post_install_message:
|
337
335
|
rdoc_options: []
|
338
336
|
require_paths:
|
339
337
|
- lib
|
@@ -348,8 +346,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
348
346
|
- !ruby/object:Gem::Version
|
349
347
|
version: '0'
|
350
348
|
requirements: []
|
351
|
-
rubygems_version: 3.
|
352
|
-
signing_key:
|
349
|
+
rubygems_version: 3.6.9
|
353
350
|
specification_version: 4
|
354
351
|
summary: Craby is just a quick test suite setup for Rails application
|
355
352
|
test_files: []
|