codelation_assets 0.3.0 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +3 -27
- data/app/assets/stylesheets/codelation/mixins/has_grid.scss +1 -0
- data/app/assets/stylesheets/codelation.scss +1 -1
- data/lib/codelation_assets/version.rb +1 -1
- data/lib/codelation_assets.rb +0 -1
- data/lib/tasks/compile.rake +20 -0
- data/{app/assets → vendor}/stylesheets/_normalize.scss +0 -0
- data/vendor/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +411 -0
- data/vendor/stylesheets/bourbon/_bourbon.scss +87 -0
- data/vendor/stylesheets/bourbon/addons/_border-color.scss +26 -0
- data/vendor/stylesheets/bourbon/addons/_border-radius.scss +48 -0
- data/vendor/stylesheets/bourbon/addons/_border-style.scss +25 -0
- data/vendor/stylesheets/bourbon/addons/_border-width.scss +25 -0
- data/vendor/stylesheets/bourbon/addons/_buttons.scss +64 -0
- data/vendor/stylesheets/bourbon/addons/_clearfix.scss +25 -0
- data/vendor/stylesheets/bourbon/addons/_ellipsis.scss +30 -0
- data/vendor/stylesheets/bourbon/addons/_font-stacks.scss +31 -0
- data/vendor/stylesheets/bourbon/addons/_hide-text.scss +27 -0
- data/vendor/stylesheets/bourbon/addons/_margin.scss +26 -0
- data/vendor/stylesheets/bourbon/addons/_padding.scss +26 -0
- data/vendor/stylesheets/bourbon/addons/_position.scss +48 -0
- data/vendor/stylesheets/bourbon/addons/_prefixer.scss +66 -0
- data/vendor/stylesheets/bourbon/addons/_retina-image.scss +25 -0
- data/vendor/stylesheets/bourbon/addons/_size.scss +51 -0
- data/vendor/stylesheets/bourbon/addons/_text-inputs.scss +113 -0
- data/vendor/stylesheets/bourbon/addons/_timing-functions.scss +34 -0
- data/vendor/stylesheets/bourbon/addons/_triangle.scss +63 -0
- data/vendor/stylesheets/bourbon/addons/_word-wrap.scss +29 -0
- data/vendor/stylesheets/bourbon/css3/_animation.scss +43 -0
- data/vendor/stylesheets/bourbon/css3/_appearance.scss +3 -0
- data/vendor/stylesheets/bourbon/css3/_backface-visibility.scss +3 -0
- data/vendor/stylesheets/bourbon/css3/_background-image.scss +42 -0
- data/vendor/stylesheets/bourbon/css3/_background.scss +55 -0
- data/vendor/stylesheets/bourbon/css3/_border-image.scss +59 -0
- data/vendor/stylesheets/bourbon/css3/_calc.scss +4 -0
- data/vendor/stylesheets/bourbon/css3/_columns.scss +47 -0
- data/vendor/stylesheets/bourbon/css3/_filter.scss +4 -0
- data/vendor/stylesheets/bourbon/css3/_flex-box.scss +287 -0
- data/vendor/stylesheets/bourbon/css3/_font-face.scss +24 -0
- data/vendor/stylesheets/bourbon/css3/_font-feature-settings.scss +4 -0
- data/vendor/stylesheets/bourbon/css3/_hidpi-media-query.scss +10 -0
- data/vendor/stylesheets/bourbon/css3/_hyphens.scss +4 -0
- data/vendor/stylesheets/bourbon/css3/_image-rendering.scss +14 -0
- data/vendor/stylesheets/bourbon/css3/_keyframes.scss +36 -0
- data/vendor/stylesheets/bourbon/css3/_linear-gradient.scss +38 -0
- data/vendor/stylesheets/bourbon/css3/_perspective.scss +8 -0
- data/vendor/stylesheets/bourbon/css3/_placeholder.scss +8 -0
- data/vendor/stylesheets/bourbon/css3/_radial-gradient.scss +39 -0
- data/vendor/stylesheets/bourbon/css3/_selection.scss +42 -0
- data/vendor/stylesheets/bourbon/css3/_text-decoration.scss +19 -0
- data/vendor/stylesheets/bourbon/css3/_transform.scss +15 -0
- data/vendor/stylesheets/bourbon/css3/_transition.scss +71 -0
- data/vendor/stylesheets/bourbon/css3/_user-select.scss +3 -0
- data/vendor/stylesheets/bourbon/functions/_assign-inputs.scss +11 -0
- data/vendor/stylesheets/bourbon/functions/_contains-falsy.scss +20 -0
- data/vendor/stylesheets/bourbon/functions/_contains.scss +26 -0
- data/vendor/stylesheets/bourbon/functions/_is-length.scss +11 -0
- data/vendor/stylesheets/bourbon/functions/_is-light.scss +21 -0
- data/vendor/stylesheets/bourbon/functions/_is-number.scss +11 -0
- data/vendor/stylesheets/bourbon/functions/_is-size.scss +13 -0
- data/vendor/stylesheets/bourbon/functions/_modular-scale.scss +69 -0
- data/vendor/stylesheets/bourbon/functions/_px-to-em.scss +13 -0
- data/vendor/stylesheets/bourbon/functions/_px-to-rem.scss +15 -0
- data/vendor/stylesheets/bourbon/functions/_shade.scss +24 -0
- data/vendor/stylesheets/bourbon/functions/_strip-units.scss +17 -0
- data/vendor/stylesheets/bourbon/functions/_tint.scss +24 -0
- data/vendor/stylesheets/bourbon/functions/_transition-property-name.scss +22 -0
- data/vendor/stylesheets/bourbon/functions/_unpack.scss +27 -0
- data/vendor/stylesheets/bourbon/helpers/_convert-units.scss +21 -0
- data/vendor/stylesheets/bourbon/helpers/_directional-values.scss +96 -0
- data/vendor/stylesheets/bourbon/helpers/_font-source-declaration.scss +43 -0
- data/vendor/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +13 -0
- data/vendor/stylesheets/bourbon/helpers/_linear-angle-parser.scss +25 -0
- data/vendor/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +41 -0
- data/vendor/stylesheets/bourbon/helpers/_linear-positions-parser.scss +61 -0
- data/vendor/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
- data/vendor/stylesheets/bourbon/helpers/_radial-arg-parser.scss +69 -0
- data/vendor/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +50 -0
- data/vendor/stylesheets/bourbon/helpers/_radial-positions-parser.scss +18 -0
- data/vendor/stylesheets/bourbon/helpers/_render-gradients.scss +26 -0
- data/vendor/stylesheets/bourbon/helpers/_shape-size-stripper.scss +10 -0
- data/vendor/stylesheets/bourbon/helpers/_str-to-num.scss +50 -0
- data/vendor/stylesheets/bourbon/settings/_asset-pipeline.scss +7 -0
- data/vendor/stylesheets/bourbon/settings/_prefixer.scss +9 -0
- data/vendor/stylesheets/bourbon/settings/_px-to-em.scss +1 -0
- metadata +96 -17
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: codelation_assets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Pattison
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: bourbon
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '4.2'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '4.2'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: rails
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,6 +38,20 @@ dependencies:
|
|
52
38
|
- - ">="
|
53
39
|
- !ruby/object:Gem::Version
|
54
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: uglifier
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.7'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.7'
|
55
55
|
description: A collection of Sass mixins and JavaScript helpers used by Codelation
|
56
56
|
for building awesome Rails apps quickly.
|
57
57
|
email:
|
@@ -66,7 +66,6 @@ files:
|
|
66
66
|
- app/assets/javascripts/codelation.js
|
67
67
|
- app/assets/javascripts/codelation/app.js
|
68
68
|
- app/assets/javascripts/codelation/components/has_grid.js
|
69
|
-
- app/assets/stylesheets/_normalize.scss
|
70
69
|
- app/assets/stylesheets/codelation.scss
|
71
70
|
- app/assets/stylesheets/codelation/functions/color.scss
|
72
71
|
- app/assets/stylesheets/codelation/functions/text_color.scss
|
@@ -78,6 +77,86 @@ files:
|
|
78
77
|
- app/assets/stylesheets/codelation/mixins/has_grid.scss
|
79
78
|
- lib/codelation_assets.rb
|
80
79
|
- lib/codelation_assets/version.rb
|
80
|
+
- lib/tasks/compile.rake
|
81
|
+
- vendor/stylesheets/_normalize.scss
|
82
|
+
- vendor/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss
|
83
|
+
- vendor/stylesheets/bourbon/_bourbon.scss
|
84
|
+
- vendor/stylesheets/bourbon/addons/_border-color.scss
|
85
|
+
- vendor/stylesheets/bourbon/addons/_border-radius.scss
|
86
|
+
- vendor/stylesheets/bourbon/addons/_border-style.scss
|
87
|
+
- vendor/stylesheets/bourbon/addons/_border-width.scss
|
88
|
+
- vendor/stylesheets/bourbon/addons/_buttons.scss
|
89
|
+
- vendor/stylesheets/bourbon/addons/_clearfix.scss
|
90
|
+
- vendor/stylesheets/bourbon/addons/_ellipsis.scss
|
91
|
+
- vendor/stylesheets/bourbon/addons/_font-stacks.scss
|
92
|
+
- vendor/stylesheets/bourbon/addons/_hide-text.scss
|
93
|
+
- vendor/stylesheets/bourbon/addons/_margin.scss
|
94
|
+
- vendor/stylesheets/bourbon/addons/_padding.scss
|
95
|
+
- vendor/stylesheets/bourbon/addons/_position.scss
|
96
|
+
- vendor/stylesheets/bourbon/addons/_prefixer.scss
|
97
|
+
- vendor/stylesheets/bourbon/addons/_retina-image.scss
|
98
|
+
- vendor/stylesheets/bourbon/addons/_size.scss
|
99
|
+
- vendor/stylesheets/bourbon/addons/_text-inputs.scss
|
100
|
+
- vendor/stylesheets/bourbon/addons/_timing-functions.scss
|
101
|
+
- vendor/stylesheets/bourbon/addons/_triangle.scss
|
102
|
+
- vendor/stylesheets/bourbon/addons/_word-wrap.scss
|
103
|
+
- vendor/stylesheets/bourbon/css3/_animation.scss
|
104
|
+
- vendor/stylesheets/bourbon/css3/_appearance.scss
|
105
|
+
- vendor/stylesheets/bourbon/css3/_backface-visibility.scss
|
106
|
+
- vendor/stylesheets/bourbon/css3/_background-image.scss
|
107
|
+
- vendor/stylesheets/bourbon/css3/_background.scss
|
108
|
+
- vendor/stylesheets/bourbon/css3/_border-image.scss
|
109
|
+
- vendor/stylesheets/bourbon/css3/_calc.scss
|
110
|
+
- vendor/stylesheets/bourbon/css3/_columns.scss
|
111
|
+
- vendor/stylesheets/bourbon/css3/_filter.scss
|
112
|
+
- vendor/stylesheets/bourbon/css3/_flex-box.scss
|
113
|
+
- vendor/stylesheets/bourbon/css3/_font-face.scss
|
114
|
+
- vendor/stylesheets/bourbon/css3/_font-feature-settings.scss
|
115
|
+
- vendor/stylesheets/bourbon/css3/_hidpi-media-query.scss
|
116
|
+
- vendor/stylesheets/bourbon/css3/_hyphens.scss
|
117
|
+
- vendor/stylesheets/bourbon/css3/_image-rendering.scss
|
118
|
+
- vendor/stylesheets/bourbon/css3/_keyframes.scss
|
119
|
+
- vendor/stylesheets/bourbon/css3/_linear-gradient.scss
|
120
|
+
- vendor/stylesheets/bourbon/css3/_perspective.scss
|
121
|
+
- vendor/stylesheets/bourbon/css3/_placeholder.scss
|
122
|
+
- vendor/stylesheets/bourbon/css3/_radial-gradient.scss
|
123
|
+
- vendor/stylesheets/bourbon/css3/_selection.scss
|
124
|
+
- vendor/stylesheets/bourbon/css3/_text-decoration.scss
|
125
|
+
- vendor/stylesheets/bourbon/css3/_transform.scss
|
126
|
+
- vendor/stylesheets/bourbon/css3/_transition.scss
|
127
|
+
- vendor/stylesheets/bourbon/css3/_user-select.scss
|
128
|
+
- vendor/stylesheets/bourbon/functions/_assign-inputs.scss
|
129
|
+
- vendor/stylesheets/bourbon/functions/_contains-falsy.scss
|
130
|
+
- vendor/stylesheets/bourbon/functions/_contains.scss
|
131
|
+
- vendor/stylesheets/bourbon/functions/_is-length.scss
|
132
|
+
- vendor/stylesheets/bourbon/functions/_is-light.scss
|
133
|
+
- vendor/stylesheets/bourbon/functions/_is-number.scss
|
134
|
+
- vendor/stylesheets/bourbon/functions/_is-size.scss
|
135
|
+
- vendor/stylesheets/bourbon/functions/_modular-scale.scss
|
136
|
+
- vendor/stylesheets/bourbon/functions/_px-to-em.scss
|
137
|
+
- vendor/stylesheets/bourbon/functions/_px-to-rem.scss
|
138
|
+
- vendor/stylesheets/bourbon/functions/_shade.scss
|
139
|
+
- vendor/stylesheets/bourbon/functions/_strip-units.scss
|
140
|
+
- vendor/stylesheets/bourbon/functions/_tint.scss
|
141
|
+
- vendor/stylesheets/bourbon/functions/_transition-property-name.scss
|
142
|
+
- vendor/stylesheets/bourbon/functions/_unpack.scss
|
143
|
+
- vendor/stylesheets/bourbon/helpers/_convert-units.scss
|
144
|
+
- vendor/stylesheets/bourbon/helpers/_directional-values.scss
|
145
|
+
- vendor/stylesheets/bourbon/helpers/_font-source-declaration.scss
|
146
|
+
- vendor/stylesheets/bourbon/helpers/_gradient-positions-parser.scss
|
147
|
+
- vendor/stylesheets/bourbon/helpers/_linear-angle-parser.scss
|
148
|
+
- vendor/stylesheets/bourbon/helpers/_linear-gradient-parser.scss
|
149
|
+
- vendor/stylesheets/bourbon/helpers/_linear-positions-parser.scss
|
150
|
+
- vendor/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss
|
151
|
+
- vendor/stylesheets/bourbon/helpers/_radial-arg-parser.scss
|
152
|
+
- vendor/stylesheets/bourbon/helpers/_radial-gradient-parser.scss
|
153
|
+
- vendor/stylesheets/bourbon/helpers/_radial-positions-parser.scss
|
154
|
+
- vendor/stylesheets/bourbon/helpers/_render-gradients.scss
|
155
|
+
- vendor/stylesheets/bourbon/helpers/_shape-size-stripper.scss
|
156
|
+
- vendor/stylesheets/bourbon/helpers/_str-to-num.scss
|
157
|
+
- vendor/stylesheets/bourbon/settings/_asset-pipeline.scss
|
158
|
+
- vendor/stylesheets/bourbon/settings/_prefixer.scss
|
159
|
+
- vendor/stylesheets/bourbon/settings/_px-to-em.scss
|
81
160
|
homepage: https://github.com/codelation/codelation_assets
|
82
161
|
licenses:
|
83
162
|
- MIT
|