susyboot 0.1.0 → 0.1.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 +4 -4
- data/README.md +12 -4
- data/VERSION +1 -1
- data/docs/changelog.rst +13 -0
- metadata +14 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e80cfc7c7d2a2c8dbc2a22b52e9653abb664f390
|
|
4
|
+
data.tar.gz: 0ba93b3fa06ca55da77381e63b08e244e6fd2d41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52806dcfb69a4fdf9a0ba710b42ef85240b421ab21f43c91eb792e2ac1cfbe4ab93ec37e74422faefc1c6116708db9c3c79a6032a6f571f25a0967a55190f1fe
|
|
7
|
+
data.tar.gz: 1f31a794044c19f0ba205c3436e90b994ad4c65656c9f32993e1ca352dc9c3c693f957d0e048cf5a8e064013356f8c73080a2255830172d9033c8b11e3833e9b
|
data/README.md
CHANGED
|
@@ -41,17 +41,25 @@ Just include [susyboot.css](https://github.com/kkomelin/susyboot/blob/master/css
|
|
|
41
41
|
|
|
42
42
|
**SASS:**
|
|
43
43
|
|
|
44
|
-
We are planning publishing a Ruby gem in the future.
|
|
45
|
-
For now, simply copy [susyboot.css](https://github.com/kkomelin/susyboot/blob/master/css/susyboot.css) into your sass or scss folder,
|
|
46
|
-
change the extension to **scss** and import as usual:
|
|
47
44
|
```
|
|
45
|
+
# command line
|
|
46
|
+
gem install susyboot
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
# config.rb
|
|
51
|
+
require 'susyboot'
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
/* app.scss */
|
|
48
56
|
@import "susyboot";
|
|
49
57
|
```
|
|
50
58
|
|
|
51
59
|
Roadmap
|
|
52
60
|
---
|
|
53
61
|
- Fix nested column margin
|
|
54
|
-
-
|
|
62
|
+
- Add support of npm, composer, and others.
|
|
55
63
|
|
|
56
64
|
Normalize.css
|
|
57
65
|
---
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/docs/changelog.rst
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: susyboot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Komelin
|
|
@@ -42,11 +42,16 @@ description: Susy-powered Bootstrap grid replacement
|
|
|
42
42
|
email: konstantin@komelin.com
|
|
43
43
|
executables: []
|
|
44
44
|
extensions: []
|
|
45
|
-
extra_rdoc_files:
|
|
45
|
+
extra_rdoc_files:
|
|
46
|
+
- docs/changelog.rst
|
|
47
|
+
- LICENSE
|
|
48
|
+
- README.md
|
|
49
|
+
- lib/susyboot.rb
|
|
46
50
|
files:
|
|
47
51
|
- LICENSE
|
|
48
52
|
- README.md
|
|
49
53
|
- VERSION
|
|
54
|
+
- docs/changelog.rst
|
|
50
55
|
- lib/susyboot.rb
|
|
51
56
|
- scss/_susyboot.scss
|
|
52
57
|
- scss/susyboot/_mixins.scss
|
|
@@ -58,7 +63,13 @@ licenses:
|
|
|
58
63
|
- MIT
|
|
59
64
|
metadata: {}
|
|
60
65
|
post_install_message:
|
|
61
|
-
rdoc_options:
|
|
66
|
+
rdoc_options:
|
|
67
|
+
- "--line-numbers"
|
|
68
|
+
- "--inline-source"
|
|
69
|
+
- "--title"
|
|
70
|
+
- Susyboot
|
|
71
|
+
- "--main"
|
|
72
|
+
- README.md
|
|
62
73
|
require_paths:
|
|
63
74
|
- lib
|
|
64
75
|
required_ruby_version: !ruby/object:Gem::Requirement
|