tachyonscss-rails 4.9.0

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.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +33 -0
  3. data/README.md +42 -0
  4. data/Rakefile +43 -0
  5. data/app/assets/stylesheets/scss/_aspect-ratios.scss +142 -0
  6. data/app/assets/stylesheets/scss/_background-position.scss +133 -0
  7. data/app/assets/stylesheets/scss/_background-size.scss +41 -0
  8. data/app/assets/stylesheets/scss/_border-colors.scss +93 -0
  9. data/app/assets/stylesheets/scss/_border-radius.scss +134 -0
  10. data/app/assets/stylesheets/scss/_border-style.scss +55 -0
  11. data/app/assets/stylesheets/scss/_border-widths.scss +81 -0
  12. data/app/assets/stylesheets/scss/_borders.scss +65 -0
  13. data/app/assets/stylesheets/scss/_box-shadow.scss +48 -0
  14. data/app/assets/stylesheets/scss/_box-sizing.scss +49 -0
  15. data/app/assets/stylesheets/scss/_clears.scss +47 -0
  16. data/app/assets/stylesheets/scss/_code.scss +18 -0
  17. data/app/assets/stylesheets/scss/_coordinates.scss +153 -0
  18. data/app/assets/stylesheets/scss/_debug-children.scss +21 -0
  19. data/app/assets/stylesheets/scss/_debug-grid.scss +33 -0
  20. data/app/assets/stylesheets/scss/_debug.scss +127 -0
  21. data/app/assets/stylesheets/scss/_debug_children.scss +18 -0
  22. data/app/assets/stylesheets/scss/_display.scss +111 -0
  23. data/app/assets/stylesheets/scss/_flexbox.scss +257 -0
  24. data/app/assets/stylesheets/scss/_floats.scss +56 -0
  25. data/app/assets/stylesheets/scss/_font-family.scss +99 -0
  26. data/app/assets/stylesheets/scss/_font-style.scss +36 -0
  27. data/app/assets/stylesheets/scss/_font-weight.scss +87 -0
  28. data/app/assets/stylesheets/scss/_forms.scss +23 -0
  29. data/app/assets/stylesheets/scss/_gradients.scss +29 -0
  30. data/app/assets/stylesheets/scss/_heights.scss +131 -0
  31. data/app/assets/stylesheets/scss/_hovers.scss +166 -0
  32. data/app/assets/stylesheets/scss/_images.scss +18 -0
  33. data/app/assets/stylesheets/scss/_letter-spacing.scss +40 -0
  34. data/app/assets/stylesheets/scss/_line-height.scss +41 -0
  35. data/app/assets/stylesheets/scss/_links.scss +34 -0
  36. data/app/assets/stylesheets/scss/_lists.scss +15 -0
  37. data/app/assets/stylesheets/scss/_max-widths.scss +105 -0
  38. data/app/assets/stylesheets/scss/_module-template.scss +29 -0
  39. data/app/assets/stylesheets/scss/_negative-margins.scss +205 -0
  40. data/app/assets/stylesheets/scss/_nested.scss +63 -0
  41. data/app/assets/stylesheets/scss/_normalize.scss +454 -0
  42. data/app/assets/stylesheets/scss/_opacity.scss +27 -0
  43. data/app/assets/stylesheets/scss/_outlines.scss +39 -0
  44. data/app/assets/stylesheets/scss/_overflow.scss +82 -0
  45. data/app/assets/stylesheets/scss/_position.scss +44 -0
  46. data/app/assets/stylesheets/scss/_rotations.scss +50 -0
  47. data/app/assets/stylesheets/scss/_skins-pseudo.scss +243 -0
  48. data/app/assets/stylesheets/scss/_skins.scss +143 -0
  49. data/app/assets/stylesheets/scss/_spacing.scss +947 -0
  50. data/app/assets/stylesheets/scss/_styles.scss +15 -0
  51. data/app/assets/stylesheets/scss/_tables.scss +42 -0
  52. data/app/assets/stylesheets/scss/_text-align.scss +53 -0
  53. data/app/assets/stylesheets/scss/_text-decoration.scss +42 -0
  54. data/app/assets/stylesheets/scss/_text-transform.scss +53 -0
  55. data/app/assets/stylesheets/scss/_type-scale.scss +102 -0
  56. data/app/assets/stylesheets/scss/_typography.scss +129 -0
  57. data/app/assets/stylesheets/scss/_utilities.scss +57 -0
  58. data/app/assets/stylesheets/scss/_variables.scss +143 -0
  59. data/app/assets/stylesheets/scss/_vertical-align.scss +43 -0
  60. data/app/assets/stylesheets/scss/_visibility.scss +58 -0
  61. data/app/assets/stylesheets/scss/_white-space.scss +41 -0
  62. data/app/assets/stylesheets/scss/_widths.scss +150 -0
  63. data/app/assets/stylesheets/scss/_word-break.scss +43 -0
  64. data/app/assets/stylesheets/scss/_z-index.scss +60 -0
  65. data/app/assets/stylesheets/tachyons.scss +94 -0
  66. data/lib/tachyonscss-rails/engine.rb +11 -0
  67. data/lib/tachyonscss-rails/version.rb +3 -0
  68. data/lib/tachyonscss-rails.rb +5 -0
  69. metadata +113 -0
@@ -0,0 +1,58 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ VISIBILITY
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+
20
+ /*
21
+ Text that is hidden but accessible
22
+ Ref: http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
23
+ */
24
+
25
+ .clip {
26
+ position: fixed !important;
27
+ _position: absolute !important;
28
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
29
+ clip: rect(1px, 1px, 1px, 1px);
30
+ }
31
+
32
+ @media #{$breakpoint-not-small} {
33
+ .clip-ns {
34
+ position: fixed !important;
35
+ _position: absolute !important;
36
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
37
+ clip: rect(1px, 1px, 1px, 1px);
38
+ }
39
+ }
40
+
41
+ @media #{$breakpoint-medium} {
42
+ .clip-m {
43
+ position: fixed !important;
44
+ _position: absolute !important;
45
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
46
+ clip: rect(1px, 1px, 1px, 1px);
47
+ }
48
+ }
49
+
50
+ @media #{$breakpoint-large} {
51
+ .clip-l {
52
+ position: fixed !important;
53
+ _position: absolute !important;
54
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
55
+ clip: rect(1px, 1px, 1px, 1px);
56
+ }
57
+ }
58
+
@@ -0,0 +1,41 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WHITE SPACE
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+
20
+ .ws-normal { white-space: normal; }
21
+ .nowrap { white-space: nowrap; }
22
+ .pre { white-space: pre; }
23
+
24
+ @media #{$breakpoint-not-small} {
25
+ .ws-normal-ns { white-space: normal; }
26
+ .nowrap-ns { white-space: nowrap; }
27
+ .pre-ns { white-space: pre; }
28
+ }
29
+
30
+ @media #{$breakpoint-medium} {
31
+ .ws-normal-m { white-space: normal; }
32
+ .nowrap-m { white-space: nowrap; }
33
+ .pre-m { white-space: pre; }
34
+ }
35
+
36
+ @media #{$breakpoint-large} {
37
+ .ws-normal-l { white-space: normal; }
38
+ .nowrap-l { white-space: nowrap; }
39
+ .pre-l { white-space: pre; }
40
+ }
41
+
@@ -0,0 +1,150 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WIDTHS
11
+ Docs: http://tachyons.io/docs/layout/widths/
12
+
13
+ Base:
14
+ w = width
15
+
16
+ Modifiers
17
+ 1 = 1st step in width scale
18
+ 2 = 2nd step in width scale
19
+ 3 = 3rd step in width scale
20
+ 4 = 4th step in width scale
21
+ 5 = 5th step in width scale
22
+
23
+ -10 = literal value 10%
24
+ -20 = literal value 20%
25
+ -25 = literal value 25%
26
+ -30 = literal value 30%
27
+ -33 = literal value 33%
28
+ -34 = literal value 34%
29
+ -40 = literal value 40%
30
+ -50 = literal value 50%
31
+ -60 = literal value 60%
32
+ -70 = literal value 70%
33
+ -75 = literal value 75%
34
+ -80 = literal value 80%
35
+ -90 = literal value 90%
36
+ -100 = literal value 100%
37
+
38
+ -third = 100% / 3 (Not supported in opera mini or IE8)
39
+ -two-thirds = 100% / 1.5 (Not supported in opera mini or IE8)
40
+ -auto = string value auto
41
+
42
+
43
+ Media Query Extensions:
44
+ -ns = not-small
45
+ -m = medium
46
+ -l = large
47
+
48
+ */
49
+
50
+ /* Width Scale */
51
+
52
+ .w1 { width: $width-1; }
53
+ .w2 { width: $width-2; }
54
+ .w3 { width: $width-3; }
55
+ .w4 { width: $width-4; }
56
+ .w5 { width: $width-5; }
57
+
58
+ .w-10 { width: 10%; }
59
+ .w-20 { width: 20%; }
60
+ .w-25 { width: 25%; }
61
+ .w-30 { width: 30%; }
62
+ .w-33 { width: 33%; }
63
+ .w-34 { width: 34%; }
64
+ .w-40 { width: 40%; }
65
+ .w-50 { width: 50%; }
66
+ .w-60 { width: 60%; }
67
+ .w-70 { width: 70%; }
68
+ .w-75 { width: 75%; }
69
+ .w-80 { width: 80%; }
70
+ .w-90 { width: 90%; }
71
+ .w-100 { width: 100%; }
72
+
73
+ .w-third { width: (100% / 3); }
74
+ .w-two-thirds { width: (100% / 1.5); }
75
+ .w-auto { width: auto; }
76
+
77
+ @media #{$breakpoint-not-small} {
78
+ .w1-ns { width: $width-1; }
79
+ .w2-ns { width: $width-2; }
80
+ .w3-ns { width: $width-3; }
81
+ .w4-ns { width: $width-4; }
82
+ .w5-ns { width: $width-5; }
83
+ .w-10-ns { width: 10%; }
84
+ .w-20-ns { width: 20%; }
85
+ .w-25-ns { width: 25%; }
86
+ .w-30-ns { width: 30%; }
87
+ .w-33-ns { width: 33%; }
88
+ .w-34-ns { width: 34%; }
89
+ .w-40-ns { width: 40%; }
90
+ .w-50-ns { width: 50%; }
91
+ .w-60-ns { width: 60%; }
92
+ .w-70-ns { width: 70%; }
93
+ .w-75-ns { width: 75%; }
94
+ .w-80-ns { width: 80%; }
95
+ .w-90-ns { width: 90%; }
96
+ .w-100-ns { width: 100%; }
97
+ .w-third-ns { width: (100% / 3); }
98
+ .w-two-thirds-ns { width: (100% / 1.5); }
99
+ .w-auto-ns { width: auto; }
100
+ }
101
+
102
+ @media #{$breakpoint-medium} {
103
+ .w1-m { width: $width-1; }
104
+ .w2-m { width: $width-2; }
105
+ .w3-m { width: $width-3; }
106
+ .w4-m { width: $width-4; }
107
+ .w5-m { width: $width-5; }
108
+ .w-10-m { width: 10%; }
109
+ .w-20-m { width: 20%; }
110
+ .w-25-m { width: 25%; }
111
+ .w-30-m { width: 30%; }
112
+ .w-33-m { width: 33%; }
113
+ .w-34-m { width: 34%; }
114
+ .w-40-m { width: 40%; }
115
+ .w-50-m { width: 50%; }
116
+ .w-60-m { width: 60%; }
117
+ .w-70-m { width: 70%; }
118
+ .w-75-m { width: 75%; }
119
+ .w-80-m { width: 80%; }
120
+ .w-90-m { width: 90%; }
121
+ .w-100-m { width: 100%; }
122
+ .w-third-m { width: (100% / 3); }
123
+ .w-two-thirds-m { width: (100% / 1.5); }
124
+ .w-auto-m { width: auto; }
125
+ }
126
+
127
+ @media #{$breakpoint-large} {
128
+ .w1-l { width: $width-1; }
129
+ .w2-l { width: $width-2; }
130
+ .w3-l { width: $width-3; }
131
+ .w4-l { width: $width-4; }
132
+ .w5-l { width: $width-5; }
133
+ .w-10-l { width: 10%; }
134
+ .w-20-l { width: 20%; }
135
+ .w-25-l { width: 25%; }
136
+ .w-30-l { width: 30%; }
137
+ .w-33-l { width: 33%; }
138
+ .w-34-l { width: 34%; }
139
+ .w-40-l { width: 40%; }
140
+ .w-50-l { width: 50%; }
141
+ .w-60-l { width: 60%; }
142
+ .w-70-l { width: 70%; }
143
+ .w-75-l { width: 75%; }
144
+ .w-80-l { width: 80%; }
145
+ .w-90-l { width: 90%; }
146
+ .w-100-l { width: 100%; }
147
+ .w-third-l { width: (100% / 3); }
148
+ .w-two-thirds-l { width: (100% / 1.5); }
149
+ .w-auto-l { width: auto; }
150
+ }
@@ -0,0 +1,43 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WORD BREAK
11
+
12
+ Base:
13
+ word = word-break
14
+
15
+ Media Query Extensions:
16
+ -ns = not-small
17
+ -m = medium
18
+ -l = large
19
+
20
+ */
21
+
22
+ .word-normal { word-break: normal; }
23
+ .word-wrap { word-break: break-all; }
24
+ .word-nowrap { word-break: keep-all; }
25
+
26
+ @media #{$breakpoint-not-small} {
27
+ .word-normal-ns { word-break: normal; }
28
+ .word-wrap-ns { word-break: break-all; }
29
+ .word-nowrap-ns { word-break: keep-all; }
30
+ }
31
+
32
+ @media #{$breakpoint-medium} {
33
+ .word-normal-m { word-break: normal; }
34
+ .word-wrap-m { word-break: break-all; }
35
+ .word-nowrap-m { word-break: keep-all; }
36
+ }
37
+
38
+ @media #{$breakpoint-large} {
39
+ .word-normal-l { word-break: normal; }
40
+ .word-wrap-l { word-break: break-all; }
41
+ .word-nowrap-l { word-break: keep-all; }
42
+ }
43
+
@@ -0,0 +1,60 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ Z-INDEX
11
+
12
+ Base
13
+ z = z-index
14
+
15
+ Modifiers
16
+ -0 = literal value 0
17
+ -1 = literal value 1
18
+ -2 = literal value 2
19
+ -3 = literal value 3
20
+ -4 = literal value 4
21
+ -5 = literal value 5
22
+ -999 = literal value 999
23
+ -9999 = literal value 9999
24
+
25
+ -max = largest accepted z-index value as integer
26
+
27
+ -inherit = string value inherit
28
+ -initial = string value initial
29
+ -unset = string value unset
30
+
31
+ MDN: https://developer.mozilla.org/en/docs/Web/CSS/z-index
32
+ Spec: http://www.w3.org/TR/CSS2/zindex.html
33
+ Articles:
34
+ https://philipwalton.com/articles/what-no-one-told-you-about-z-index/
35
+
36
+ Tips on extending:
37
+ There might be a time worth using negative z-index values.
38
+ Or if you are using tachyons with another project, you might need to
39
+ adjust these values to suit your needs.
40
+
41
+ */
42
+
43
+ .z-0 { z-index: 0; }
44
+ .z-1 { z-index: 1; }
45
+ .z-2 { z-index: 2; }
46
+ .z-3 { z-index: 3; }
47
+ .z-4 { z-index: 4; }
48
+ .z-5 { z-index: 5; }
49
+
50
+ .z-999 { z-index: 999; }
51
+ .z-9999 { z-index: 9999; }
52
+
53
+ .z-max {
54
+ z-index: 2147483647;
55
+ }
56
+
57
+ .z-inherit { z-index: inherit; }
58
+ .z-initial { z-index: initial; }
59
+ .z-unset { z-index: unset; }
60
+
@@ -0,0 +1,94 @@
1
+ // ! TACHYONS v4.9.0 | http://tachyons.io
2
+
3
+ //
4
+ //
5
+ // ________ ______
6
+ // ___ __/_____ _________ /______ ______________________
7
+ // __ / _ __ `/ ___/_ __ \_ / / / __ \_ __ \_ ___/
8
+ // _ / / /_/ // /__ _ / / / /_/ // /_/ / / / /(__ )
9
+ // /_/ \__,_/ \___/ /_/ /_/_\__, / \____//_/ /_//____/
10
+ // /____/
11
+ //
12
+ // TABLE OF CONTENTS
13
+ //
14
+ // 1. External Library Includes
15
+ // - Normalize.css | http://normalize.css.github.io
16
+ // 2. Tachyons Modules
17
+ // 3. Variables
18
+ // - Media Queries
19
+ // - Colors
20
+ // 4. Debugging
21
+ // - Debug all
22
+ // - Debug children
23
+ //
24
+ //
25
+
26
+
27
+ // External Library Includes
28
+ @import 'scss/normalize';
29
+
30
+
31
+ // Variables
32
+ // Importing here will allow you to override any variables in the modules
33
+
34
+ @import 'scss/variables';
35
+
36
+ // Debugging
37
+ @import 'scss/debug-children';
38
+ @import 'scss/debug-grid';
39
+
40
+ // Uncomment out the line below to help debug layout issues
41
+ // @import 'scss/debug';
42
+
43
+ // Modules
44
+ @import 'scss/box-sizing';
45
+ @import 'scss/aspect-ratios';
46
+ @import 'scss/images';
47
+ @import 'scss/background-size';
48
+ @import 'scss/background-position';
49
+ @import 'scss/outlines';
50
+ @import 'scss/borders';
51
+ @import 'scss/border-colors';
52
+ @import 'scss/border-radius';
53
+ @import 'scss/border-style';
54
+ @import 'scss/border-widths';
55
+ @import 'scss/box-shadow';
56
+ @import 'scss/code';
57
+ @import 'scss/coordinates';
58
+ @import 'scss/clears';
59
+ @import 'scss/flexbox';
60
+ @import 'scss/display';
61
+ @import 'scss/floats';
62
+ @import 'scss/font-family';
63
+ @import 'scss/font-style';
64
+ @import 'scss/font-weight';
65
+ @import 'scss/forms';
66
+ @import 'scss/heights';
67
+ @import 'scss/letter-spacing';
68
+ @import 'scss/line-height';
69
+ @import 'scss/links';
70
+ @import 'scss/lists';
71
+ @import 'scss/max-widths';
72
+ @import 'scss/widths';
73
+ @import 'scss/overflow';
74
+ @import 'scss/position';
75
+ @import 'scss/opacity';
76
+ @import 'scss/rotations';
77
+ @import 'scss/skins';
78
+ @import 'scss/skins-pseudo';
79
+ @import 'scss/spacing';
80
+ @import 'scss/negative-margins';
81
+ @import 'scss/tables';
82
+ @import 'scss/text-decoration';
83
+ @import 'scss/text-align';
84
+ @import 'scss/text-transform';
85
+ @import 'scss/type-scale';
86
+ @import 'scss/typography';
87
+ @import 'scss/utilities';
88
+ @import 'scss/visibility';
89
+ @import 'scss/white-space';
90
+ @import 'scss/vertical-align';
91
+ @import 'scss/hovers';
92
+ @import 'scss/z-index';
93
+ @import 'scss/nested';
94
+ @import 'scss/styles';
@@ -0,0 +1,11 @@
1
+ puts "ENGINE"
2
+ module TachyonscssRails
3
+ class Engine < ::Rails::Engine
4
+ initializer "tachyonscss.assets" do
5
+ Rails.application.config.assets.precompile += %w( tachyons.css )
6
+ end
7
+ initializer "tachyonscss.disable_generator_stylesheets" do
8
+ Rails.application.config.generators.stylesheets = false
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module TachyonscssRails
2
+ VERSION = "4.9.0"
3
+ end
@@ -0,0 +1,5 @@
1
+ puts "REQUIRED"
2
+ module TachyonscssRails
3
+ end
4
+
5
+ require "tachyonscss-rails/engine"
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tachyonscss-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.9.0
5
+ platform: ruby
6
+ authors:
7
+ - Dave Copeland
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-09-28 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - davec@naildrivin5.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.md
21
+ - README.md
22
+ - Rakefile
23
+ - app/assets/stylesheets/scss/_aspect-ratios.scss
24
+ - app/assets/stylesheets/scss/_background-position.scss
25
+ - app/assets/stylesheets/scss/_background-size.scss
26
+ - app/assets/stylesheets/scss/_border-colors.scss
27
+ - app/assets/stylesheets/scss/_border-radius.scss
28
+ - app/assets/stylesheets/scss/_border-style.scss
29
+ - app/assets/stylesheets/scss/_border-widths.scss
30
+ - app/assets/stylesheets/scss/_borders.scss
31
+ - app/assets/stylesheets/scss/_box-shadow.scss
32
+ - app/assets/stylesheets/scss/_box-sizing.scss
33
+ - app/assets/stylesheets/scss/_clears.scss
34
+ - app/assets/stylesheets/scss/_code.scss
35
+ - app/assets/stylesheets/scss/_coordinates.scss
36
+ - app/assets/stylesheets/scss/_debug-children.scss
37
+ - app/assets/stylesheets/scss/_debug-grid.scss
38
+ - app/assets/stylesheets/scss/_debug.scss
39
+ - app/assets/stylesheets/scss/_debug_children.scss
40
+ - app/assets/stylesheets/scss/_display.scss
41
+ - app/assets/stylesheets/scss/_flexbox.scss
42
+ - app/assets/stylesheets/scss/_floats.scss
43
+ - app/assets/stylesheets/scss/_font-family.scss
44
+ - app/assets/stylesheets/scss/_font-style.scss
45
+ - app/assets/stylesheets/scss/_font-weight.scss
46
+ - app/assets/stylesheets/scss/_forms.scss
47
+ - app/assets/stylesheets/scss/_gradients.scss
48
+ - app/assets/stylesheets/scss/_heights.scss
49
+ - app/assets/stylesheets/scss/_hovers.scss
50
+ - app/assets/stylesheets/scss/_images.scss
51
+ - app/assets/stylesheets/scss/_letter-spacing.scss
52
+ - app/assets/stylesheets/scss/_line-height.scss
53
+ - app/assets/stylesheets/scss/_links.scss
54
+ - app/assets/stylesheets/scss/_lists.scss
55
+ - app/assets/stylesheets/scss/_max-widths.scss
56
+ - app/assets/stylesheets/scss/_module-template.scss
57
+ - app/assets/stylesheets/scss/_negative-margins.scss
58
+ - app/assets/stylesheets/scss/_nested.scss
59
+ - app/assets/stylesheets/scss/_normalize.scss
60
+ - app/assets/stylesheets/scss/_opacity.scss
61
+ - app/assets/stylesheets/scss/_outlines.scss
62
+ - app/assets/stylesheets/scss/_overflow.scss
63
+ - app/assets/stylesheets/scss/_position.scss
64
+ - app/assets/stylesheets/scss/_rotations.scss
65
+ - app/assets/stylesheets/scss/_skins-pseudo.scss
66
+ - app/assets/stylesheets/scss/_skins.scss
67
+ - app/assets/stylesheets/scss/_spacing.scss
68
+ - app/assets/stylesheets/scss/_styles.scss
69
+ - app/assets/stylesheets/scss/_tables.scss
70
+ - app/assets/stylesheets/scss/_text-align.scss
71
+ - app/assets/stylesheets/scss/_text-decoration.scss
72
+ - app/assets/stylesheets/scss/_text-transform.scss
73
+ - app/assets/stylesheets/scss/_type-scale.scss
74
+ - app/assets/stylesheets/scss/_typography.scss
75
+ - app/assets/stylesheets/scss/_utilities.scss
76
+ - app/assets/stylesheets/scss/_variables.scss
77
+ - app/assets/stylesheets/scss/_vertical-align.scss
78
+ - app/assets/stylesheets/scss/_visibility.scss
79
+ - app/assets/stylesheets/scss/_white-space.scss
80
+ - app/assets/stylesheets/scss/_widths.scss
81
+ - app/assets/stylesheets/scss/_word-break.scss
82
+ - app/assets/stylesheets/scss/_z-index.scss
83
+ - app/assets/stylesheets/tachyons.scss
84
+ - lib/tachyonscss-rails.rb
85
+ - lib/tachyonscss-rails/engine.rb
86
+ - lib/tachyonscss-rails/version.rb
87
+ homepage: https://sustainable-rails.com
88
+ licenses:
89
+ - Hippocratic
90
+ metadata:
91
+ homepage_uri: https://sustainable-rails.com
92
+ source_code_uri: https://github.com/sustainable-rails/tachyonscss-rails
93
+ changelog_uri: https://github.com/sustainable-rails/tachyonscss-rails/releases
94
+ post_install_message:
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 2.5.0
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubygems_version: 3.1.2
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: Use Tachyons in the Rails Asset Pipeline
113
+ test_files: []