netguru_bootstrapper 0.0.6 → 1.0.0
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/CHANGELOG.md +3 -0
- data/README.md +5 -2
- data/lib/netguru_bootstrapper/templates/application.scss +4 -1
- data/lib/netguru_bootstrapper/templates/settings/{_variables.scss → _color-variables.scss} +0 -0
- data/lib/netguru_bootstrapper/templates/settings/_components-variables.scss +0 -0
- data/lib/netguru_bootstrapper/templates/settings/_typography-variables.scss +0 -0
- data/lib/netguru_bootstrapper/templates/settings/_views-variables.scss +0 -0
- data/lib/netguru_bootstrapper/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 590ecc03daaecace16dc7f98eb787d85dc83043b
|
4
|
+
data.tar.gz: cc9f150770f0b062f0f6a2930640f798cd99cd0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 670a0ec912c7114d2750b513c838c5b0e96421eb7975e06489c6543dd771049e8d204860e57bfd4e530fc87ad928dd077f0061d248da7df608c1a47202173e52
|
7
|
+
data.tar.gz: 41650188f29bf5602ceafda5f484a3239af05c510ab63ef21bc36532eb2d33a7106fc6ac2e5f2a38124ffe232fcec7a87337006de42ca657386a1a0718927bad
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -49,9 +49,12 @@ If you're not using Rails you'll probably need to edit [this line](https://githu
|
|
49
49
|
│ └── overrides
|
50
50
|
│ └── _framework-overrides-go-here.scss
|
51
51
|
├── settings
|
52
|
-
│ ├── _z-index-variables.scss
|
53
52
|
│ ├── _breakpoint-variables.scss
|
54
|
-
│
|
53
|
+
│ ├── _color-variables.scss
|
54
|
+
│ ├── _components-variables.scss
|
55
|
+
│ ├── _typography-variables.scss
|
56
|
+
│ ├── _views-variables.scss
|
57
|
+
│ └── _z-index-variables.scss
|
55
58
|
└── utilities
|
56
59
|
├── _functions.scss
|
57
60
|
├── _mixins.scss
|
@@ -1,7 +1,10 @@
|
|
1
1
|
@import 'bootstrap-sprockets';
|
2
2
|
|
3
|
+
@import 'settings/color-variables';
|
3
4
|
@import 'settings/z-index-variables';
|
4
|
-
@import 'settings/variables';
|
5
|
+
@import 'settings/typography-variables';
|
6
|
+
@import 'settings/components-variables';
|
7
|
+
@import 'settings/views-variables';
|
5
8
|
@import 'framework/variables';
|
6
9
|
|
7
10
|
@import 'framework/components';
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netguru_bootstrapper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mateusz Czajka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -76,7 +76,10 @@ files:
|
|
76
76
|
- lib/netguru_bootstrapper/templates/framework/_overrides.scss
|
77
77
|
- lib/netguru_bootstrapper/templates/framework/_variables.scss
|
78
78
|
- lib/netguru_bootstrapper/templates/settings/_breakpoint-variables.scss
|
79
|
-
- lib/netguru_bootstrapper/templates/settings/
|
79
|
+
- lib/netguru_bootstrapper/templates/settings/_color-variables.scss
|
80
|
+
- lib/netguru_bootstrapper/templates/settings/_components-variables.scss
|
81
|
+
- lib/netguru_bootstrapper/templates/settings/_typography-variables.scss
|
82
|
+
- lib/netguru_bootstrapper/templates/settings/_views-variables.scss
|
80
83
|
- lib/netguru_bootstrapper/templates/settings/_z-index-variables.scss
|
81
84
|
- lib/netguru_bootstrapper/templates/utilities/_functions.scss
|
82
85
|
- lib/netguru_bootstrapper/templates/utilities/_mixins.scss
|