base_editing_bootstrap 1.8.0 → 1.8.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40690c34bdbdecebbcf083394fefe5ea626b958a085ce695fe4a039b17c8cfa9
|
4
|
+
data.tar.gz: a087acc3bda536ea0451af2e3818cc2c07c20a3a6a5e549bb74e96d7abcd6dd5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f85bc8f2ed0aa273b2e59258ace609e711dbcb088bf9420a5eaf5a48aa7a48c0907f7d6eb75ac9614cfcf0f536f1124a7bd9ee9541c68c3f4d29908e739a280d
|
7
|
+
data.tar.gz: 5565e435135fd2bae6a1a6e1907a6d150cb6be69d5b82c52d91095a3637efa811322519ae6f696578760b961339cd986b036f508a06d08532311f88d53209508
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
3
3
|
|
4
4
|
- - -
|
5
|
+
## 1.8.1 - 2025-03-24
|
6
|
+
#### Bug Fixes
|
7
|
+
- Correct generator install multiple gems - (73948f5) - Marino Bonetti
|
8
|
+
|
9
|
+
- - -
|
10
|
+
|
5
11
|
## 1.8.0 - 2025-03-20
|
6
12
|
#### Bug Fixes
|
7
13
|
- Correct pass locals datas - (00fd083) - Marino Bonetti
|
@@ -1 +1 @@
|
|
1
|
-
1.8.
|
1
|
+
1.8.1
|
@@ -17,8 +17,18 @@ module BaseEditingBootstrap
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def prepare_test_environment
|
20
|
-
|
21
|
-
|
20
|
+
actual_gemfile_path = File.join(@destination_stack, "Gemfile")
|
21
|
+
if File.exist?(actual_gemfile_path)
|
22
|
+
actual_gemfile = File.read(File.join(@destination_stack, "Gemfile"))
|
23
|
+
else
|
24
|
+
actual_gemfile = ''
|
25
|
+
end
|
26
|
+
unless actual_gemfile =~ /factory_bot_rails/
|
27
|
+
gem "factory_bot_rails", group: :test, version: '~> 6.4', comment: "Necessary for spec"
|
28
|
+
end
|
29
|
+
unless actual_gemfile =~ /rails-controller-test/
|
30
|
+
gem 'rails-controller-testing', group: :test, comment: "Required if used with controllers spec"
|
31
|
+
end
|
22
32
|
end
|
23
33
|
end
|
24
34
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: base_editing_bootstrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marino Bonetti
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|