neat 3.0.0 → 3.0.1
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 +5 -5
- data/.circleci/config.yml +34 -0
- data/.tool-versions +2 -0
- data/CHANGELOG.md +9 -1
- data/Gulpfile.js +36 -27
- data/README.md +2 -0
- data/bower.json +1 -1
- data/core/_neat.scss +1 -1
- data/core/neat/functions/_neat-parse-columns.scss +1 -1
- data/lib/neat.rb +9 -1
- data/lib/neat/version.rb +1 -1
- data/package-lock.json +3823 -2419
- data/package.json +4 -5
- metadata +5 -5
- data/.ruby-version +0 -1
- data/circle.yml +0 -16
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bourbon-neat",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "A lightweight, semantic grid framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"columns",
|
|
@@ -35,10 +35,9 @@
|
|
|
35
35
|
"test": "bundle exec rake"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"
|
|
39
|
-
"gulp
|
|
40
|
-
"gulp-
|
|
41
|
-
"gulp-sass": "^3.2.1"
|
|
38
|
+
"browser-sync": "^2.24.6",
|
|
39
|
+
"gulp": "^4.0.0",
|
|
40
|
+
"gulp-sass": "^4.0.1"
|
|
42
41
|
},
|
|
43
42
|
"eyeglass": {
|
|
44
43
|
"name": "neat",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: neat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joel Oliveira
|
|
@@ -14,7 +14,7 @@ authors:
|
|
|
14
14
|
autorequire:
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
|
-
date:
|
|
17
|
+
date: 2019-01-07 00:00:00.000000000 Z
|
|
18
18
|
dependencies:
|
|
19
19
|
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: aruba
|
|
@@ -121,13 +121,14 @@ executables:
|
|
|
121
121
|
extensions: []
|
|
122
122
|
extra_rdoc_files: []
|
|
123
123
|
files:
|
|
124
|
+
- ".circleci/config.yml"
|
|
124
125
|
- ".github/ISSUE_TEMPLATE.md"
|
|
125
126
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
126
127
|
- ".gitignore"
|
|
127
128
|
- ".hound.yml"
|
|
128
129
|
- ".npmignore"
|
|
129
|
-
- ".ruby-version"
|
|
130
130
|
- ".scss-lint.yml"
|
|
131
|
+
- ".tool-versions"
|
|
131
132
|
- CHANGELOG.md
|
|
132
133
|
- CODE_OF_CONDUCT.md
|
|
133
134
|
- CONTRIBUTING.md
|
|
@@ -139,7 +140,6 @@ files:
|
|
|
139
140
|
- Rakefile
|
|
140
141
|
- bin/neat
|
|
141
142
|
- bower.json
|
|
142
|
-
- circle.yml
|
|
143
143
|
- contrib/base/_variables.scss
|
|
144
144
|
- contrib/index.html
|
|
145
145
|
- contrib/patterns/_box.scss
|
|
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
232
|
version: '0'
|
|
233
233
|
requirements: []
|
|
234
234
|
rubyforge_project:
|
|
235
|
-
rubygems_version: 2.
|
|
235
|
+
rubygems_version: 2.7.6
|
|
236
236
|
signing_key:
|
|
237
237
|
specification_version: 4
|
|
238
238
|
summary: A lightweight Sass grid framework
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.3.1
|
data/circle.yml
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
dependencies:
|
|
2
|
-
override:
|
|
3
|
-
- bundle install
|
|
4
|
-
- npm install -g sassdoc@2.2.0
|
|
5
|
-
general:
|
|
6
|
-
branches:
|
|
7
|
-
ignore:
|
|
8
|
-
- gh-pages
|
|
9
|
-
machine:
|
|
10
|
-
node:
|
|
11
|
-
version: 6.9.5
|
|
12
|
-
test:
|
|
13
|
-
override:
|
|
14
|
-
- bundle exec rake
|
|
15
|
-
post:
|
|
16
|
-
- sassdoc core/ --parse --verbose --strict
|