spuit 0.0.11 → 0.0.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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spuit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - is8r
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-06 00:00:00.000000000 Z
11
+ date: 2018-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -63,7 +63,6 @@ files:
63
63
  - dist/index.html
64
64
  - dist/javascripts/scripts.js
65
65
  - dist/stylesheets/styles.css
66
- - gulpfile.js
67
66
  - index.js
68
67
  - lib/spuit.rb
69
68
  - lib/spuit/engine.rb
@@ -94,6 +93,7 @@ files:
94
93
  - scss/elements/_select.scss
95
94
  - scss/elements/_table.sass
96
95
  - scss/includes/_animations.scss
96
+ - scss/includes/_grid.scss
97
97
  - scss/includes/_hiddens.scss
98
98
  - scss/includes/_normalize.scss
99
99
  - scss/includes/_spacers.scss
@@ -121,7 +121,9 @@ files:
121
121
  - scss/variables/_timing-functions.sass
122
122
  - spuit.gemspec
123
123
  - spuit.scss
124
- - webpack.config.js
124
+ - webpack/css.webpack.config.js
125
+ - webpack/js.webpack.config.js
126
+ - webpack/webpack.config.js
125
127
  - yarn.lock
126
128
  homepage: ''
127
129
  licenses:
@@ -143,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
145
  version: '0'
144
146
  requirements: []
145
147
  rubyforge_project:
146
- rubygems_version: 2.6.13
148
+ rubygems_version: 2.7.6
147
149
  signing_key:
148
150
  specification_version: 4
149
151
  summary: Sass mixins.
data/gulpfile.js DELETED
@@ -1,2 +0,0 @@
1
- 'use strict';
2
- require('require-dir')('./gulp/tasks');
data/webpack.config.js DELETED
@@ -1,53 +0,0 @@
1
- var path = require('path');
2
- var webpack = require('webpack');
3
- var autoprefixer = require('autoprefixer');
4
- var ExtractTextPlugin = require("extract-text-webpack-plugin");
5
-
6
- var app = './assets';
7
- var dist = './dist';
8
- module.exports = [{
9
- entry: {
10
- scripts: app+'/javascripts/scripts.js'
11
- },
12
- output: {
13
- filename: 'javascripts/[name].js',
14
- path: __dirname + '/' + dist
15
- },
16
- devServer: {
17
- contentBase: dist,
18
- port: 8080
19
- }
20
- }, {
21
- entry: {
22
- styles: app+'/stylesheets/styles.scss'
23
- },
24
- output: {
25
- filename: 'stylesheets/[name].css',
26
- path: __dirname + '/' + dist
27
- },
28
- module: {
29
- rules: [
30
- {
31
- test: /\.(scss|css)$/,
32
- use: ExtractTextPlugin.extract({
33
- fallback: 'style-loader',
34
- use: ['css-loader', 'sass-loader',
35
- {
36
- loader: 'postcss-loader',
37
- options: {
38
- plugins: () => [
39
- require('autoprefixer')({
40
- browsers: ['last 2 versions']
41
- })
42
- ]
43
- }
44
- }
45
- ]
46
- })
47
- }
48
- ]
49
- },
50
- plugins: [
51
- new ExtractTextPlugin({ filename: 'stylesheets/[name].css', disable: false, allChunks: true })
52
- ]
53
- }];