solid_errors 0.2.12 → 0.2.13
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: b0994c2a46715ac8e9ea954cd3633009cb9afd45e8bdc69b059417bf8d2f6345
|
|
4
|
+
data.tar.gz: 1892214969fef9c654901745364d13e14720f5e267817fe20e52d65f92808c60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f6b7521a66859cc7bf256d3e380dab54b9a91cb0976f5ec5d5d6c408f7977223d405cc40adb78c46e9b89b629b06359f49f70d446f9145ef227629f50fff4f7
|
|
7
|
+
data.tar.gz: 738686db92e70c9c296505ade351302c85575c546fe3d33c8459e4940c0f04534b515e70699cf49d4ac96d31938b2068500a07295679ce78cfcac318caad9dd3
|
|
@@ -543,6 +543,40 @@
|
|
|
543
543
|
--tw-backdrop-sepia:
|
|
544
544
|
}
|
|
545
545
|
|
|
546
|
+
.container{
|
|
547
|
+
width: 100%
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
@media (min-width: 640px){
|
|
551
|
+
.container{
|
|
552
|
+
max-width: 640px
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
@media (min-width: 768px){
|
|
557
|
+
.container{
|
|
558
|
+
max-width: 768px
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
@media (min-width: 1024px){
|
|
563
|
+
.container{
|
|
564
|
+
max-width: 1024px
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
@media (min-width: 1280px){
|
|
569
|
+
.container{
|
|
570
|
+
max-width: 1280px
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
@media (min-width: 1536px){
|
|
575
|
+
.container{
|
|
576
|
+
max-width: 1536px
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
546
580
|
.sr-only{
|
|
547
581
|
position: absolute;
|
|
548
582
|
width: 1px;
|
|
@@ -788,6 +822,36 @@
|
|
|
788
822
|
background-color: rgb(30 41 59 / var(--tw-bg-opacity))
|
|
789
823
|
}
|
|
790
824
|
|
|
825
|
+
.bg-blue-100{
|
|
826
|
+
--tw-bg-opacity: 1;
|
|
827
|
+
background-color: rgb(219 234 254 / var(--tw-bg-opacity))
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.bg-red-100{
|
|
831
|
+
--tw-bg-opacity: 1;
|
|
832
|
+
background-color: rgb(254 226 226 / var(--tw-bg-opacity))
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.bg-yellow-100{
|
|
836
|
+
--tw-bg-opacity: 1;
|
|
837
|
+
background-color: rgb(254 249 195 / var(--tw-bg-opacity))
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.text-blue-800{
|
|
841
|
+
--tw-text-opacity: 1;
|
|
842
|
+
color: rgb(30 64 175 / var(--tw-text-opacity))
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.text-red-800{
|
|
846
|
+
--tw-text-opacity: 1;
|
|
847
|
+
color: rgb(153 27 27 / var(--tw-text-opacity))
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.text-yellow-800{
|
|
851
|
+
--tw-text-opacity: 1;
|
|
852
|
+
color: rgb(133 77 14 / var(--tw-text-opacity))
|
|
853
|
+
}
|
|
854
|
+
|
|
791
855
|
.p-4{
|
|
792
856
|
padding: 1rem
|
|
793
857
|
}
|
data/lib/solid_errors/version.rb
CHANGED
data/lib/solid_errors.rb
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
require_relative "solid_errors/version"
|
|
4
4
|
require_relative "solid_errors/sanitizer"
|
|
5
5
|
require_relative "solid_errors/subscriber"
|
|
6
|
-
require_relative "solid_errors/backtrace"
|
|
7
|
-
require_relative "solid_errors/backtrace_line"
|
|
8
6
|
require_relative "solid_errors/engine"
|
|
9
7
|
|
|
10
8
|
module SolidErrors
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solid_errors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Margheim
|
|
@@ -35,6 +35,8 @@ files:
|
|
|
35
35
|
- Rakefile
|
|
36
36
|
- app/controllers/solid_errors/application_controller.rb
|
|
37
37
|
- app/controllers/solid_errors/errors_controller.rb
|
|
38
|
+
- app/models/solid_errors/backtrace.rb
|
|
39
|
+
- app/models/solid_errors/backtrace_line.rb
|
|
38
40
|
- app/models/solid_errors/error.rb
|
|
39
41
|
- app/models/solid_errors/occurrence.rb
|
|
40
42
|
- app/models/solid_errors/record.rb
|
|
@@ -50,8 +52,6 @@ files:
|
|
|
50
52
|
- lib/generators/solid_errors/install/install_generator.rb
|
|
51
53
|
- lib/generators/solid_errors/install/templates/create_solid_errors_tables.rb.erb
|
|
52
54
|
- lib/solid_errors.rb
|
|
53
|
-
- lib/solid_errors/backtrace.rb
|
|
54
|
-
- lib/solid_errors/backtrace_line.rb
|
|
55
55
|
- lib/solid_errors/engine.rb
|
|
56
56
|
- lib/solid_errors/sanitizer.rb
|
|
57
57
|
- lib/solid_errors/subscriber.rb
|
|
File without changes
|
|
File without changes
|