ui_bibz 4.0.0.beta6 → 4.0.0.beta7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/app/assets/stylesheets/sass/containers/_panel.scss +3 -3
- data/lib/ui_bibz/infos.rb +1 -1
- data/test/test_helper.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c214a04b928da73dfcb4feb28bef2a8fdff46ef460c5079090c5d843f176bd9a
|
4
|
+
data.tar.gz: 45c7dbabf9d32153b04b8044f3e3a71816bdf134da499027ac0e301a613dfd53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6719cfe7238e74257ee0382bba4a5d93ba4018b85fac812ea01bbd3345853af86c279d65c462a0f604215de181e56a71e0f01787f6217d0a5a84e92a8b146d50
|
7
|
+
data.tar.gz: ea5a435647afeeee53c2b1f6f58f2e5f98a441d999606d12684fbb41f6f1c3f9a511a3f0a8beba2fa247ecc1e931cd808710d5f064179f7b90875ad2a0fff9a4
|
data/Gemfile.lock
CHANGED
@@ -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
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.
|
24
|
-
ActionDispatch::IntegrationTest.
|
25
|
-
ActiveSupport::TestCase.file_fixture_path = "#{ActiveSupport::TestCase.
|
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
|
|