ui_bibz 4.0.0.beta6 → 4.0.0.beta7

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: 9f528f47695918dfaa5213da8ccec52eb09351947a09df77b6c9e755986bd624
4
- data.tar.gz: c454a9bad6b5cf32c67860844fa5a0583df88b6be74aa35acba92aec4b37d291
3
+ metadata.gz: c214a04b928da73dfcb4feb28bef2a8fdff46ef460c5079090c5d843f176bd9a
4
+ data.tar.gz: 45c7dbabf9d32153b04b8044f3e3a71816bdf134da499027ac0e301a613dfd53
5
5
  SHA512:
6
- metadata.gz: b06b6004730cfd177e929dd8a464e5e3a655264a87bb2935f8c434fbd3e53b523a0e02a1a3c3986c77a6efa92dcd2407204b3eae6ce023ea031823f6f8ac10f8
7
- data.tar.gz: 3d1eea98cb27518f825499f0b14f61acd7bf88cf3265406394f6f0460cf63766ba2c1aa72b769c073ad2a7775f84e7de483052962c45c86374299bdcdf019bf0
6
+ metadata.gz: 6719cfe7238e74257ee0382bba4a5d93ba4018b85fac812ea01bbd3345853af86c279d65c462a0f604215de181e56a71e0f01787f6217d0a5a84e92a8b146d50
7
+ data.tar.gz: ea5a435647afeeee53c2b1f6f58f2e5f98a441d999606d12684fbb41f6f1c3f9a511a3f0a8beba2fa247ecc1e931cd808710d5f064179f7b90875ad2a0fff9a4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ui_bibz (4.0.0.beta6)
4
+ ui_bibz (4.0.0.beta7)
5
5
  bootstrap (~> 5.3.0)
6
6
  dartsass-sprockets (~> 3.0.0)
7
7
  rails (>= 7.1.0)
@@ -151,15 +151,15 @@ $panel-columns-margin: $panel-spacer-y !default;
151
151
  //
152
152
 
153
153
  .panel-header-tabs {
154
- margin-right: -($panel-spacer-x / 2);
154
+ margin-right: -calc($panel-spacer-x / 2);
155
155
  margin-bottom: -$panel-spacer-y;
156
156
  margin-left: 0;
157
157
  border-bottom: 0;
158
158
  }
159
159
 
160
160
  .panel-header-pills {
161
- margin-right: -($panel-spacer-x / 2);
162
- margin-left: -($panel-spacer-x / 2);
161
+ margin-right: -calc($panel-spacer-x / 2);
162
+ margin-left: -calc($panel-spacer-x / 2);
163
163
  }
164
164
 
165
165
  // panel image
data/lib/ui_bibz/infos.rb CHANGED
@@ -12,6 +12,6 @@ module UiBibz
12
12
  REPO = 'git+https://github.com/thooams/ui_bibz.git'
13
13
  EMAIL = 'thomas@hummel.link'
14
14
  AUTHOR = 'Thooams [Thomas HUMMEL]'
15
- VERSION = '4.0.0.beta6'
15
+ VERSION = '4.0.0.beta7'
16
16
  AUTHORS = ['Thooams'].freeze
17
17
  end
data/test/test_helper.rb CHANGED
@@ -20,9 +20,9 @@ Rails::TestUnitReporter.executable = 'bin/test'
20
20
 
21
21
  # Load fixtures from the engine
22
22
  if ActiveSupport::TestCase.respond_to?(:fixture_path=)
23
- ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__)
24
- ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
25
- ActiveSupport::TestCase.file_fixture_path = "#{ActiveSupport::TestCase.fixture_path}/files"
23
+ ActiveSupport::TestCase.fixture_paths = [File.expand_path("fixtures", __dir__)]
24
+ ActionDispatch::IntegrationTest.fixture_paths = ActiveSupport::TestCase.fixture_paths || []
25
+ ActiveSupport::TestCase.file_fixture_path = "#{ActiveSupport::TestCase.fixture_paths&.first}/files"
26
26
  ActiveSupport::TestCase.fixtures :all
27
27
  end
28
28
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ui_bibz
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.beta6
4
+ version: 4.0.0.beta7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thooams [Thomas HUMMEL]