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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 49eb5e977d988873b764328aeb48e4fe07d32d24
4
- data.tar.gz: 3eddfe89ff2ce2936619815a1cbf06c2e64e4973
3
+ metadata.gz: 590ecc03daaecace16dc7f98eb787d85dc83043b
4
+ data.tar.gz: cc9f150770f0b062f0f6a2930640f798cd99cd0c
5
5
  SHA512:
6
- metadata.gz: 987f8107dcfeaa5ef3cb49b506aa1d3854704fcd8c46a6ef05709f0437bb72543defe3422854e476f701a3a026d13bc861909b52ae22b3a344bfaf518534ab1e
7
- data.tar.gz: caf87fd01204ca1f5d5df0bf04e9d6a6483cb8de3dd1ec44f8aefbf275603af3db524b06754cd21ebc5cc0250df3673b8f39c85e9606b3572e730057777ba450
6
+ metadata.gz: 670a0ec912c7114d2750b513c838c5b0e96421eb7975e06489c6543dd771049e8d204860e57bfd4e530fc87ad928dd077f0061d248da7df608c1a47202173e52
7
+ data.tar.gz: 41650188f29bf5602ceafda5f484a3239af05c510ab63ef21bc36532eb2d33a7106fc6ac2e5f2a38124ffe232fcec7a87337006de42ca657386a1a0718927bad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.0.0
4
+ + updated variables structure
5
+
3
6
  ## v0.0.6
4
7
  + synced Bootstrap variables with [bootstrap-sass](https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/_variables.scss) repo
5
8
 
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
- └── _variables.scss
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';
@@ -1,3 +1,3 @@
1
1
  module NetguruBootstrapper
2
- VERSION = "0.0.6"
2
+ VERSION = "1.0.0"
3
3
  end
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.6
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-01-12 00:00:00.000000000 Z
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/_variables.scss
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