neat 1.9.1 → 2.0.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -4
- data/.hound.yml +5 -0
- data/.npmignore +0 -4
- data/.scss-lint.yml +3 -1
- data/CHANGELOG.md +45 -23
- data/CONTRIBUTING.md +12 -0
- data/Gemfile +1 -2
- data/Gulpfile.js +5 -6
- data/LICENSE.md +1 -1
- data/README.md +26 -163
- data/RELEASING.md +27 -0
- data/Rakefile +3 -13
- data/bower.json +8 -9
- data/circle.yml +13 -0
- data/contrib/base/_grids.scss +4 -0
- data/contrib/base/_variables.scss +8 -0
- data/contrib/index.html +68 -223
- data/contrib/patterns/_box.scss +11 -0
- data/contrib/patterns/_global.scss +5 -0
- data/contrib/patterns/_grid-media.scss +52 -0
- data/contrib/patterns/_grid-nested.scss +7 -0
- data/contrib/patterns/_grid-push.scss +7 -0
- data/contrib/patterns/_grid-shift.scss +7 -0
- data/contrib/patterns/_grid.scss +31 -0
- data/contrib/styles.scss +12 -293
- data/core/_neat.scss +20 -0
- data/core/neat/functions/_neat-column-default.scss +23 -0
- data/core/neat/functions/_neat-column-ratio.scss +24 -0
- data/core/neat/functions/_neat-column-width.scss +25 -0
- data/core/neat/functions/_neat-parse-columns.scss +22 -0
- data/core/neat/functions/_neat-parse-media.scss +20 -0
- data/core/neat/functions/_retrieve-neat-settings.scss +18 -0
- data/core/neat/mixins/_grid-column.scss +29 -0
- data/{app/assets/stylesheets/mixins/_clearfix.scss → core/neat/mixins/_grid-container.scss} +5 -5
- data/core/neat/mixins/_grid-media.scss +50 -0
- data/core/neat/mixins/_grid-push.scss +32 -0
- data/core/neat/mixins/_grid-shift.scss +31 -0
- data/core/neat/settings/_settings.scss +41 -0
- data/index.js +1 -1
- data/lib/neat.rb +5 -18
- data/lib/neat/generator.rb +1 -1
- data/lib/neat/version.rb +1 -1
- data/neat.gemspec +27 -33
- data/package.json +5 -4
- data/spec/.keep +0 -0
- data/spec/fixtures/_setup.scss +1 -0
- data/spec/fixtures/functions/neat-column-default.scss +22 -0
- data/spec/fixtures/functions/neat-column-width.scss +30 -0
- data/spec/fixtures/functions/neat-parse-media.scss +9 -0
- data/spec/fixtures/functions/retrieve-neat-settings.scss +22 -0
- data/spec/fixtures/mixins/grid-column.scss +57 -0
- data/spec/fixtures/mixins/grid-container.scss +5 -0
- data/spec/fixtures/mixins/grid-push.scss +38 -0
- data/spec/fixtures/mixins/grid-shift.scss +38 -0
- data/spec/neat/functions/neat_column_default_spec.rb +35 -0
- data/spec/neat/functions/neat_column_width_spec.rb +47 -0
- data/spec/neat/functions/neat_parse_media_spec.rb +23 -0
- data/spec/neat/functions/retrieve_neat_settings_spec.rb +35 -0
- data/spec/neat/mixins/grid_column_spec.rb +101 -0
- data/spec/neat/mixins/grid_container_spec.rb +17 -0
- data/spec/neat/mixins/grid_push_spec.rb +59 -0
- data/spec/neat/mixins/grid_shift_spec.rb +59 -0
- data/spec/support/matchers/have_ruleset.rb +20 -0
- data/spec/support/matchers/have_value.rb +9 -7
- data/spec/support/parser_support.rb +8 -1
- data/spec/support/sass_support.rb +1 -1
- metadata +76 -153
- data/.rspec +0 -1
- data/.ruby-version +0 -1
- data/.travis.yml +0 -10
- data/app/assets/stylesheets/_neat-helpers.scss +0 -11
- data/app/assets/stylesheets/_neat.scss +0 -24
- data/app/assets/stylesheets/functions/_new-breakpoint.scss +0 -49
- data/app/assets/stylesheets/functions/_private.scss +0 -154
- data/app/assets/stylesheets/grid/_box-sizing.scss +0 -15
- data/app/assets/stylesheets/grid/_direction-context.scss +0 -33
- data/app/assets/stylesheets/grid/_display-context.scss +0 -28
- data/app/assets/stylesheets/grid/_fill-parent.scss +0 -22
- data/app/assets/stylesheets/grid/_media.scss +0 -92
- data/app/assets/stylesheets/grid/_omega.scss +0 -112
- data/app/assets/stylesheets/grid/_outer-container.scss +0 -34
- data/app/assets/stylesheets/grid/_pad.scss +0 -25
- data/app/assets/stylesheets/grid/_private.scss +0 -35
- data/app/assets/stylesheets/grid/_reset-display.scss +0 -14
- data/app/assets/stylesheets/grid/_row.scss +0 -45
- data/app/assets/stylesheets/grid/_shift.scss +0 -50
- data/app/assets/stylesheets/grid/_span-columns.scss +0 -94
- data/app/assets/stylesheets/grid/_to-deprecate.scss +0 -81
- data/app/assets/stylesheets/grid/_visual-grid.scss +0 -42
- data/app/assets/stylesheets/settings/_disable-warnings.scss +0 -13
- data/app/assets/stylesheets/settings/_grid.scss +0 -51
- data/app/assets/stylesheets/settings/_visual-grid.scss +0 -27
- data/lib/neat/engine.rb +0 -5
- data/lib/tasks/install.rake +0 -19
- data/sache.json +0 -5
- data/spec/neat/columns_spec.rb +0 -73
- data/spec/neat/container_spec.rb +0 -21
- data/spec/neat/default_spec.rb +0 -15
- data/spec/neat/direction_spec.rb +0 -19
- data/spec/neat/display_spec.rb +0 -19
- data/spec/neat/media_spec.rb +0 -55
- data/spec/neat/new_breakpoint_spec.rb +0 -17
- data/spec/neat/omega_spec.rb +0 -66
- data/spec/neat/pad_spec.rb +0 -32
- data/spec/neat/row_spec.rb +0 -39
- data/spec/neat/shift_spec.rb +0 -41
- data/test/_setup.scss +0 -2
- data/test/default.scss +0 -1
- data/test/direction-context.scss +0 -13
- data/test/display-context.scss +0 -15
- data/test/media.scss +0 -39
- data/test/new-breakpoint.scss +0 -13
- data/test/omega.scss +0 -29
- data/test/outer-container.scss +0 -11
- data/test/pad.scss +0 -17
- data/test/row.scss +0 -26
- data/test/shift.scss +0 -36
- data/test/span-columns.scss +0 -21
@@ -0,0 +1,17 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "grid-container" do
|
4
|
+
before(:all) do
|
5
|
+
ParserSupport.parse_file("mixins/grid-container")
|
6
|
+
end
|
7
|
+
|
8
|
+
context "called with default settings" do
|
9
|
+
it "adds after element" do
|
10
|
+
ruleset = "clear: both; " +
|
11
|
+
"content: \"\"; " +
|
12
|
+
"display: block;"
|
13
|
+
|
14
|
+
expect(".grid-container::after").to have_ruleset(ruleset)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "grid-push" do
|
4
|
+
before(:all) do
|
5
|
+
ParserSupport.parse_file("mixins/grid-push")
|
6
|
+
end
|
7
|
+
|
8
|
+
context "called with default settings" do
|
9
|
+
it "adds margin for just the gutter with no specified column" do
|
10
|
+
rule = "margin-left: 20px"
|
11
|
+
|
12
|
+
expect(".grid-push-default").to have_rule(rule)
|
13
|
+
end
|
14
|
+
|
15
|
+
it "adds margin for one column" do
|
16
|
+
rule = "margin-left: calc(8.33333% - 21.66667px + 40px)"
|
17
|
+
|
18
|
+
expect(".grid-push-1-default").to have_rule(rule)
|
19
|
+
end
|
20
|
+
|
21
|
+
it "adds margin for six columns" do
|
22
|
+
rule = "margin-left: calc(50% - 30px + 40px)"
|
23
|
+
|
24
|
+
expect(".grid-push-6-default").to have_rule(rule)
|
25
|
+
end
|
26
|
+
|
27
|
+
it "adds margin for negative six columns" do
|
28
|
+
rule = "margin-left: calc(-50% - 10px + 40px)"
|
29
|
+
|
30
|
+
expect(".grid-push-neg-6-default").to have_rule(rule)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
context "called with custom settings" do
|
35
|
+
it "adds margin for just the gutter with no specified column" do
|
36
|
+
rule = "margin-left: 2rem"
|
37
|
+
|
38
|
+
expect(".grid-push-0-six").to have_rule(rule)
|
39
|
+
end
|
40
|
+
|
41
|
+
it "adds margin for one column" do
|
42
|
+
rule = "margin-left: calc(16.66667% - 2.33333rem + 4rem)"
|
43
|
+
|
44
|
+
expect(".grid-push-1-six").to have_rule(rule)
|
45
|
+
end
|
46
|
+
|
47
|
+
it "adds margin for three columns" do
|
48
|
+
rule = "margin-left: calc(50% - 3rem + 4rem)"
|
49
|
+
|
50
|
+
expect(".grid-push-3-six").to have_rule(rule)
|
51
|
+
end
|
52
|
+
|
53
|
+
it "adds margin for negative three columns" do
|
54
|
+
rule = "margin-left: calc(-50% - 1rem + 4rem)"
|
55
|
+
|
56
|
+
expect(".grid-push-neg-3-six").to have_rule(rule)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "grid-shift" do
|
4
|
+
before(:all) do
|
5
|
+
ParserSupport.parse_file("mixins/grid-shift")
|
6
|
+
end
|
7
|
+
|
8
|
+
context "called with default settings" do
|
9
|
+
it "adds relative positioning without moving the object" do
|
10
|
+
rule = "left: auto; position: relative;"
|
11
|
+
|
12
|
+
expect(".grid-shift-default").to have_ruleset(rule)
|
13
|
+
end
|
14
|
+
|
15
|
+
it "moves the object one column to the right" do
|
16
|
+
rule = "left: calc(8.33333% - 21.66667px + 20px); position: relative;"
|
17
|
+
|
18
|
+
expect(".grid-shift-1-default").to have_ruleset(rule)
|
19
|
+
end
|
20
|
+
|
21
|
+
it "moves the object six columns to the right" do
|
22
|
+
rule = "left: calc(50% - 30px + 20px); position: relative;"
|
23
|
+
|
24
|
+
expect(".grid-shift-6-default").to have_ruleset(rule)
|
25
|
+
end
|
26
|
+
|
27
|
+
it "moves the object six columns to the left" do
|
28
|
+
rule = "left: calc(-50% - 10px + 20px); position: relative;"
|
29
|
+
|
30
|
+
expect(".grid-shift-neg-6-default").to have_ruleset(rule)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
context "called with custom settings" do
|
35
|
+
it "adds relative positioning without moving the object" do
|
36
|
+
rule = "left: auto; position: relative;"
|
37
|
+
|
38
|
+
expect(".grid-shift-0-six").to have_ruleset(rule)
|
39
|
+
end
|
40
|
+
|
41
|
+
it "moves the object one column to the right" do
|
42
|
+
rule = "left: calc(16.66667% - 2.33333rem + 2rem); position: relative;"
|
43
|
+
|
44
|
+
expect(".grid-shift-1-six").to have_ruleset(rule)
|
45
|
+
end
|
46
|
+
|
47
|
+
it "moves the object three columns to the right" do
|
48
|
+
rule = "left: calc(50% - 3rem + 2rem); position: relative;"
|
49
|
+
|
50
|
+
expect(".grid-shift-3-six").to have_ruleset(rule)
|
51
|
+
end
|
52
|
+
|
53
|
+
it "moves the object three columns to the left" do
|
54
|
+
rule = "left: calc(-50% - 1rem + 2rem); position: relative;"
|
55
|
+
|
56
|
+
expect(".grid-shift-neg-3-six").to have_ruleset(rule)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
RSpec::Matchers.define :have_ruleset do |expected|
|
2
|
+
match do |selector|
|
3
|
+
@ruleset = rules_from_selector(selector)
|
4
|
+
@ruleset.join("; ") == expected
|
5
|
+
end
|
6
|
+
|
7
|
+
failure_message do |selector|
|
8
|
+
if @ruleset.empty?
|
9
|
+
%{no CSS for selector #{selector} were found}
|
10
|
+
else
|
11
|
+
ruleset = @ruleset.join("; ")
|
12
|
+
%{Expected selector #{selector} to have CSS rule "#{expected}".
|
13
|
+
Had "#{ruleset}".}
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def rules_from_selector(selector)
|
18
|
+
ParserSupport.parser.find_by_selector(selector)
|
19
|
+
end
|
20
|
+
end
|
@@ -1,15 +1,17 @@
|
|
1
1
|
RSpec::Matchers.define :have_value do |expected|
|
2
|
-
match do |
|
3
|
-
|
4
|
-
value_attribute = ParserSupport.parser.find_by_selector(
|
2
|
+
match do |variable|
|
3
|
+
selector_class = variable.sub("$", ".")
|
4
|
+
@value_attribute = ParserSupport.parser.find_by_selector(selector_class)[0]
|
5
5
|
|
6
|
-
unless value_attribute.nil?
|
7
|
-
actual_value = value_attribute.split(":")[1].strip.sub(";", "")
|
6
|
+
unless @value_attribute.nil?
|
7
|
+
actual_value = @value_attribute.split(":")[1].strip.sub(";", "")
|
8
8
|
actual_value == expected
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
12
|
-
failure_message do |
|
13
|
-
|
12
|
+
failure_message do |variable_name|
|
13
|
+
value_attribute = @value_attribute.to_s
|
14
|
+
%{Expected variable #{variable_name} to have value "#{expected}".
|
15
|
+
Had "#{value_attribute}".}
|
14
16
|
end
|
15
17
|
end
|
@@ -4,6 +4,13 @@ module ParserSupport
|
|
4
4
|
end
|
5
5
|
|
6
6
|
def self.parse_file(identifier)
|
7
|
-
|
7
|
+
parser.load_file!("tmp/#{identifier}.css")
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.show_contents(identifier)
|
11
|
+
css_file_contents = File.open("tmp/#{identifier}.css").read
|
12
|
+
css_file_contents.each_line do |line|
|
13
|
+
puts line
|
14
|
+
end
|
8
15
|
end
|
9
16
|
end
|
metadata
CHANGED
@@ -1,59 +1,21 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0.alpha.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Oliveira
|
8
|
+
- Joshua Ogle
|
8
9
|
- Kyle Fiedler
|
9
10
|
- Reda Lemeden
|
11
|
+
- Tyson Gach
|
12
|
+
- Ward Penney
|
13
|
+
- Will McMahan
|
10
14
|
autorequire:
|
11
15
|
bindir: bin
|
12
16
|
cert_chain: []
|
13
|
-
date:
|
17
|
+
date: 2016-07-23 00:00:00.000000000 Z
|
14
18
|
dependencies:
|
15
|
-
- !ruby/object:Gem::Dependency
|
16
|
-
name: sass
|
17
|
-
requirement: !ruby/object:Gem::Requirement
|
18
|
-
requirements:
|
19
|
-
- - ">="
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: '3.3'
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
requirements:
|
26
|
-
- - ">="
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
version: '3.3'
|
29
|
-
- !ruby/object:Gem::Dependency
|
30
|
-
name: thor
|
31
|
-
requirement: !ruby/object:Gem::Requirement
|
32
|
-
requirements:
|
33
|
-
- - "~>"
|
34
|
-
- !ruby/object:Gem::Version
|
35
|
-
version: '0.19'
|
36
|
-
type: :runtime
|
37
|
-
prerelease: false
|
38
|
-
version_requirements: !ruby/object:Gem::Requirement
|
39
|
-
requirements:
|
40
|
-
- - "~>"
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: '0.19'
|
43
|
-
- !ruby/object:Gem::Dependency
|
44
|
-
name: scss_lint
|
45
|
-
requirement: !ruby/object:Gem::Requirement
|
46
|
-
requirements:
|
47
|
-
- - "~>"
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: '0.43'
|
50
|
-
type: :development
|
51
|
-
prerelease: false
|
52
|
-
version_requirements: !ruby/object:Gem::Requirement
|
53
|
-
requirements:
|
54
|
-
- - "~>"
|
55
|
-
- !ruby/object:Gem::Version
|
56
|
-
version: '0.43'
|
57
19
|
- !ruby/object:Gem::Dependency
|
58
20
|
name: aruba
|
59
21
|
requirement: !ruby/object:Gem::Requirement
|
@@ -69,7 +31,7 @@ dependencies:
|
|
69
31
|
- !ruby/object:Gem::Version
|
70
32
|
version: 0.5.0
|
71
33
|
- !ruby/object:Gem::Dependency
|
72
|
-
name:
|
34
|
+
name: css_parser
|
73
35
|
requirement: !ruby/object:Gem::Requirement
|
74
36
|
requirements:
|
75
37
|
- - ">="
|
@@ -83,7 +45,7 @@ dependencies:
|
|
83
45
|
- !ruby/object:Gem::Version
|
84
46
|
version: '0'
|
85
47
|
- !ruby/object:Gem::Dependency
|
86
|
-
name:
|
48
|
+
name: rake
|
87
49
|
requirement: !ruby/object:Gem::Requirement
|
88
50
|
requirements:
|
89
51
|
- - ">="
|
@@ -97,7 +59,7 @@ dependencies:
|
|
97
59
|
- !ruby/object:Gem::Version
|
98
60
|
version: '0'
|
99
61
|
- !ruby/object:Gem::Dependency
|
100
|
-
name:
|
62
|
+
name: rspec
|
101
63
|
requirement: !ruby/object:Gem::Requirement
|
102
64
|
requirements:
|
103
65
|
- - ">="
|
@@ -111,135 +73,125 @@ dependencies:
|
|
111
73
|
- !ruby/object:Gem::Version
|
112
74
|
version: '0'
|
113
75
|
- !ruby/object:Gem::Dependency
|
114
|
-
name:
|
76
|
+
name: scss_lint
|
115
77
|
requirement: !ruby/object:Gem::Requirement
|
116
78
|
requirements:
|
117
79
|
- - "~>"
|
118
80
|
- !ruby/object:Gem::Version
|
119
|
-
version: 0.
|
81
|
+
version: '0.44'
|
120
82
|
type: :development
|
121
83
|
prerelease: false
|
122
84
|
version_requirements: !ruby/object:Gem::Requirement
|
123
85
|
requirements:
|
124
86
|
- - "~>"
|
125
87
|
- !ruby/object:Gem::Version
|
126
|
-
version: 0.
|
88
|
+
version: '0.44'
|
127
89
|
- !ruby/object:Gem::Dependency
|
128
|
-
name:
|
90
|
+
name: sass
|
129
91
|
requirement: !ruby/object:Gem::Requirement
|
130
92
|
requirements:
|
131
|
-
- - "
|
93
|
+
- - "~>"
|
132
94
|
- !ruby/object:Gem::Version
|
133
|
-
version: '
|
134
|
-
type: :
|
95
|
+
version: '3.4'
|
96
|
+
type: :runtime
|
135
97
|
prerelease: false
|
136
98
|
version_requirements: !ruby/object:Gem::Requirement
|
137
99
|
requirements:
|
138
|
-
- - "
|
100
|
+
- - "~>"
|
139
101
|
- !ruby/object:Gem::Version
|
140
|
-
version: '
|
102
|
+
version: '3.4'
|
141
103
|
- !ruby/object:Gem::Dependency
|
142
|
-
name:
|
104
|
+
name: thor
|
143
105
|
requirement: !ruby/object:Gem::Requirement
|
144
106
|
requirements:
|
145
|
-
- - "
|
107
|
+
- - "~>"
|
146
108
|
- !ruby/object:Gem::Version
|
147
|
-
version: '0'
|
148
|
-
type: :
|
109
|
+
version: '0.19'
|
110
|
+
type: :runtime
|
149
111
|
prerelease: false
|
150
112
|
version_requirements: !ruby/object:Gem::Requirement
|
151
113
|
requirements:
|
152
|
-
- - "
|
114
|
+
- - "~>"
|
153
115
|
- !ruby/object:Gem::Version
|
154
|
-
version: '0'
|
155
|
-
description:
|
156
|
-
|
157
|
-
out of the box and flexible enough to customize down the road.
|
158
|
-
email: design+bourbon@thoughtbot.com
|
116
|
+
version: '0.19'
|
117
|
+
description:
|
118
|
+
email: design+neat@thoughtbot.com
|
159
119
|
executables:
|
160
120
|
- neat
|
161
121
|
extensions: []
|
162
122
|
extra_rdoc_files: []
|
163
123
|
files:
|
164
124
|
- ".gitignore"
|
125
|
+
- ".hound.yml"
|
165
126
|
- ".npmignore"
|
166
|
-
- ".rspec"
|
167
|
-
- ".ruby-version"
|
168
127
|
- ".scss-lint.yml"
|
169
|
-
- ".travis.yml"
|
170
128
|
- CHANGELOG.md
|
171
129
|
- CONTRIBUTING.md
|
172
130
|
- Gemfile
|
173
131
|
- Gulpfile.js
|
174
132
|
- LICENSE.md
|
175
133
|
- README.md
|
134
|
+
- RELEASING.md
|
176
135
|
- Rakefile
|
177
|
-
- app/assets/stylesheets/_neat-helpers.scss
|
178
|
-
- app/assets/stylesheets/_neat.scss
|
179
|
-
- app/assets/stylesheets/functions/_new-breakpoint.scss
|
180
|
-
- app/assets/stylesheets/functions/_private.scss
|
181
|
-
- app/assets/stylesheets/grid/_box-sizing.scss
|
182
|
-
- app/assets/stylesheets/grid/_direction-context.scss
|
183
|
-
- app/assets/stylesheets/grid/_display-context.scss
|
184
|
-
- app/assets/stylesheets/grid/_fill-parent.scss
|
185
|
-
- app/assets/stylesheets/grid/_media.scss
|
186
|
-
- app/assets/stylesheets/grid/_omega.scss
|
187
|
-
- app/assets/stylesheets/grid/_outer-container.scss
|
188
|
-
- app/assets/stylesheets/grid/_pad.scss
|
189
|
-
- app/assets/stylesheets/grid/_private.scss
|
190
|
-
- app/assets/stylesheets/grid/_reset-display.scss
|
191
|
-
- app/assets/stylesheets/grid/_row.scss
|
192
|
-
- app/assets/stylesheets/grid/_shift.scss
|
193
|
-
- app/assets/stylesheets/grid/_span-columns.scss
|
194
|
-
- app/assets/stylesheets/grid/_to-deprecate.scss
|
195
|
-
- app/assets/stylesheets/grid/_visual-grid.scss
|
196
|
-
- app/assets/stylesheets/mixins/_clearfix.scss
|
197
|
-
- app/assets/stylesheets/settings/_disable-warnings.scss
|
198
|
-
- app/assets/stylesheets/settings/_grid.scss
|
199
|
-
- app/assets/stylesheets/settings/_visual-grid.scss
|
200
136
|
- bin/neat
|
201
137
|
- bower.json
|
138
|
+
- circle.yml
|
139
|
+
- contrib/base/_grids.scss
|
140
|
+
- contrib/base/_variables.scss
|
202
141
|
- contrib/index.html
|
142
|
+
- contrib/patterns/_box.scss
|
143
|
+
- contrib/patterns/_global.scss
|
144
|
+
- contrib/patterns/_grid-media.scss
|
145
|
+
- contrib/patterns/_grid-nested.scss
|
146
|
+
- contrib/patterns/_grid-push.scss
|
147
|
+
- contrib/patterns/_grid-shift.scss
|
148
|
+
- contrib/patterns/_grid.scss
|
203
149
|
- contrib/styles.scss
|
150
|
+
- core/_neat.scss
|
151
|
+
- core/neat/functions/_neat-column-default.scss
|
152
|
+
- core/neat/functions/_neat-column-ratio.scss
|
153
|
+
- core/neat/functions/_neat-column-width.scss
|
154
|
+
- core/neat/functions/_neat-parse-columns.scss
|
155
|
+
- core/neat/functions/_neat-parse-media.scss
|
156
|
+
- core/neat/functions/_retrieve-neat-settings.scss
|
157
|
+
- core/neat/mixins/_grid-column.scss
|
158
|
+
- core/neat/mixins/_grid-container.scss
|
159
|
+
- core/neat/mixins/_grid-media.scss
|
160
|
+
- core/neat/mixins/_grid-push.scss
|
161
|
+
- core/neat/mixins/_grid-shift.scss
|
162
|
+
- core/neat/settings/_settings.scss
|
204
163
|
- eyeglass-exports.js
|
205
164
|
- index.js
|
206
165
|
- lib/neat.rb
|
207
|
-
- lib/neat/engine.rb
|
208
166
|
- lib/neat/generator.rb
|
209
167
|
- lib/neat/version.rb
|
210
|
-
- lib/tasks/install.rake
|
211
168
|
- neat.gemspec
|
212
169
|
- package.json
|
213
|
-
-
|
214
|
-
- spec/
|
215
|
-
- spec/neat
|
216
|
-
- spec/neat
|
217
|
-
- spec/neat
|
218
|
-
- spec/neat
|
219
|
-
- spec/
|
220
|
-
- spec/
|
221
|
-
- spec/
|
222
|
-
- spec/
|
223
|
-
- spec/neat/
|
224
|
-
- spec/neat/
|
170
|
+
- spec/.keep
|
171
|
+
- spec/fixtures/_setup.scss
|
172
|
+
- spec/fixtures/functions/neat-column-default.scss
|
173
|
+
- spec/fixtures/functions/neat-column-width.scss
|
174
|
+
- spec/fixtures/functions/neat-parse-media.scss
|
175
|
+
- spec/fixtures/functions/retrieve-neat-settings.scss
|
176
|
+
- spec/fixtures/mixins/grid-column.scss
|
177
|
+
- spec/fixtures/mixins/grid-container.scss
|
178
|
+
- spec/fixtures/mixins/grid-push.scss
|
179
|
+
- spec/fixtures/mixins/grid-shift.scss
|
180
|
+
- spec/neat/functions/neat_column_default_spec.rb
|
181
|
+
- spec/neat/functions/neat_column_width_spec.rb
|
182
|
+
- spec/neat/functions/neat_parse_media_spec.rb
|
183
|
+
- spec/neat/functions/retrieve_neat_settings_spec.rb
|
184
|
+
- spec/neat/mixins/grid_column_spec.rb
|
185
|
+
- spec/neat/mixins/grid_container_spec.rb
|
186
|
+
- spec/neat/mixins/grid_push_spec.rb
|
187
|
+
- spec/neat/mixins/grid_shift_spec.rb
|
225
188
|
- spec/spec_helper.rb
|
226
189
|
- spec/support/matchers/be_contained_in.rb
|
227
190
|
- spec/support/matchers/have_rule.rb
|
191
|
+
- spec/support/matchers/have_ruleset.rb
|
228
192
|
- spec/support/matchers/have_value.rb
|
229
193
|
- spec/support/parser_support.rb
|
230
194
|
- spec/support/sass_support.rb
|
231
|
-
- test/_setup.scss
|
232
|
-
- test/default.scss
|
233
|
-
- test/direction-context.scss
|
234
|
-
- test/display-context.scss
|
235
|
-
- test/media.scss
|
236
|
-
- test/new-breakpoint.scss
|
237
|
-
- test/omega.scss
|
238
|
-
- test/outer-container.scss
|
239
|
-
- test/pad.scss
|
240
|
-
- test/row.scss
|
241
|
-
- test/shift.scss
|
242
|
-
- test/span-columns.scss
|
243
195
|
homepage: http://neat.bourbon.io
|
244
196
|
licenses:
|
245
197
|
- MIT
|
@@ -255,42 +207,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
255
207
|
version: '0'
|
256
208
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
257
209
|
requirements:
|
258
|
-
- - "
|
210
|
+
- - ">"
|
259
211
|
- !ruby/object:Gem::Version
|
260
|
-
version:
|
212
|
+
version: 1.3.1
|
261
213
|
requirements: []
|
262
|
-
rubyforge_project:
|
263
|
-
rubygems_version: 2.
|
214
|
+
rubyforge_project:
|
215
|
+
rubygems_version: 2.6.6
|
264
216
|
signing_key:
|
265
217
|
specification_version: 4
|
266
|
-
summary: A lightweight
|
267
|
-
test_files:
|
268
|
-
- spec/neat/columns_spec.rb
|
269
|
-
- spec/neat/container_spec.rb
|
270
|
-
- spec/neat/default_spec.rb
|
271
|
-
- spec/neat/direction_spec.rb
|
272
|
-
- spec/neat/display_spec.rb
|
273
|
-
- spec/neat/media_spec.rb
|
274
|
-
- spec/neat/new_breakpoint_spec.rb
|
275
|
-
- spec/neat/omega_spec.rb
|
276
|
-
- spec/neat/pad_spec.rb
|
277
|
-
- spec/neat/row_spec.rb
|
278
|
-
- spec/neat/shift_spec.rb
|
279
|
-
- spec/spec_helper.rb
|
280
|
-
- spec/support/matchers/be_contained_in.rb
|
281
|
-
- spec/support/matchers/have_rule.rb
|
282
|
-
- spec/support/matchers/have_value.rb
|
283
|
-
- spec/support/parser_support.rb
|
284
|
-
- spec/support/sass_support.rb
|
285
|
-
- test/_setup.scss
|
286
|
-
- test/default.scss
|
287
|
-
- test/direction-context.scss
|
288
|
-
- test/display-context.scss
|
289
|
-
- test/media.scss
|
290
|
-
- test/new-breakpoint.scss
|
291
|
-
- test/omega.scss
|
292
|
-
- test/outer-container.scss
|
293
|
-
- test/pad.scss
|
294
|
-
- test/row.scss
|
295
|
-
- test/shift.scss
|
296
|
-
- test/span-columns.scss
|
218
|
+
summary: A lightweight Sass grid framework
|
219
|
+
test_files: []
|