rootbeer 0.0.2 → 0.0.4
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/lib/rootbeer/version.rb +1 -1
- data/readme.md +2 -0
- data/scss/rootbeer.scss +7 -9
- data/scss/rootbeer/_variables.scss +8 -9
- data/scss/rootbeer/editor-style.scss +1 -1
- data/templates/project/config.rb +2 -3
- data/templates/project/manifest.rb +6 -7
- data/templates/project/scss/app.scss +2 -1
- metadata +2 -3
- data/scss/rootbeer/components/widgets-bottom.scss +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
SHA1:
|
|
3
|
-
data.tar.gz: d48fece126d0518a0f7e2296a567c60ab2476419
|
|
4
|
-
metadata.gz: c7e30ac4e944ef088192fa279591d73defcff98e
|
|
5
2
|
SHA512:
|
|
6
|
-
data.tar.gz:
|
|
7
|
-
metadata.gz:
|
|
3
|
+
data.tar.gz: 32e1631a3b51875669d89ee761d771e6c530df1bb33ebaa7b537cd2fb81df76b9bbc258be5108774b1f7573d9e8d0423e4caf0dbe649c7b3f09929f13f5b2062
|
|
4
|
+
metadata.gz: 280c867817d95a74e98cae65ee45b7e73402ad3a0eca5b6584c28936ccad9b92356c707cbe223736657beb28ad9cc90bebebc71203fa825309e0de5c1e354db6
|
|
5
|
+
SHA1:
|
|
6
|
+
data.tar.gz: db7a030eb7328b102ff124610ebc7c496a7b617a
|
|
7
|
+
metadata.gz: 96a8f4b657d6f86c70b9cec9f336afd40fe3ea9f
|
data/lib/rootbeer/version.rb
CHANGED
data/readme.md
CHANGED
data/scss/rootbeer.scss
CHANGED
|
@@ -18,17 +18,15 @@
|
|
|
18
18
|
// $sidebar-widget-font-color: $body-font-color;
|
|
19
19
|
// $sidebar-list-style-position: inside;
|
|
20
20
|
|
|
21
|
-
// Bottom Widgets
|
|
22
|
-
|
|
23
|
-
// $bottom-bg-color: $body-bg;
|
|
24
|
-
// $bottom-widget-column-width: 4;
|
|
25
|
-
// $bottom-widget-title-color: $header-font-color;
|
|
26
|
-
// $bottom-widget-font-color: $body-font-color;
|
|
27
|
-
// $bottom-widget-padding: em-calc(20) 0;
|
|
28
|
-
// $bottom-widget-margin: em-calc(10) 0;
|
|
29
|
-
|
|
30
21
|
// Footer
|
|
31
22
|
|
|
23
|
+
// $footer-bg-color: $body-bg;
|
|
24
|
+
// $footer-widget-column-width: 4;
|
|
25
|
+
// $footer-widget-title-color: $header-font-color;
|
|
26
|
+
// $footer-widget-font-color: $header-font;
|
|
27
|
+
// $footer-widget-padding: em-calc(20) 0;
|
|
28
|
+
// $footer-widget-margin: em-calc(10) 0;
|
|
29
|
+
|
|
32
30
|
// $footer-bg-color: $body-bg;
|
|
33
31
|
// $footer-font-color: lighten($body-font-color, 30%);
|
|
34
32
|
// $footer-navigation-color: $primary-color;
|
|
@@ -18,17 +18,16 @@
|
|
|
18
18
|
// $sidebar-widget-font-color: $body-font-color;
|
|
19
19
|
// $sidebar-list-style-position: inside;
|
|
20
20
|
|
|
21
|
-
// Bottom Widgets
|
|
22
|
-
|
|
23
|
-
// $bottom-bg-color: $body-bg;
|
|
24
|
-
// $bottom-widget-column-width: 4;
|
|
25
|
-
// $bottom-widget-title-color: $header-font-color;
|
|
26
|
-
// $bottom-widget-font-color: $body-font-color;
|
|
27
|
-
// $bottom-widget-padding: em-calc(20) 0;
|
|
28
|
-
// $bottom-widget-margin: em-calc(10) 0;
|
|
29
|
-
|
|
30
21
|
// Footer
|
|
31
22
|
|
|
23
|
+
// $footer-widget-bg-color: $body-bg;
|
|
24
|
+
// $footer-widget-column-width: 4;
|
|
25
|
+
// $footer-widget-title-font: $header-font;
|
|
26
|
+
// $footer-widget-title-color: $header-font-color;
|
|
27
|
+
// $footer-widget-font-color: $body-font-color;
|
|
28
|
+
// $footer-widget-padding: em-calc(20) 0;
|
|
29
|
+
// $footer-widget-margin: em-calc(10) 0;
|
|
30
|
+
|
|
32
31
|
// $footer-bg-color: $body-bg;
|
|
33
32
|
// $footer-font-color: lighten($body-font-color, 30%);
|
|
34
33
|
// $footer-navigation-color: $primary-color;
|
data/templates/project/config.rb
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
require 'zurb-foundation'
|
|
2
1
|
require 'rootbeer'
|
|
3
2
|
|
|
4
3
|
# Require any additional compass plugins here.
|
|
5
|
-
|
|
4
|
+
require 'zurb-foundation'
|
|
6
5
|
|
|
7
6
|
# Set this to the root of your project when deployed:
|
|
8
7
|
http_path = "/"
|
|
@@ -25,4 +24,4 @@ javascripts_dir = "javascripts"
|
|
|
25
24
|
# project again passing --syntax sass, or you can uncomment this:
|
|
26
25
|
# preferred_syntax = :sass
|
|
27
26
|
# and then run:
|
|
28
|
-
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
|
|
27
|
+
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
|
|
@@ -4,18 +4,17 @@ description 'Rootbeer Compass Gem'
|
|
|
4
4
|
stylesheet '../../../zurb-foundation-4.3.1/scss/normalize.scss', :to => '_normalize.scss'
|
|
5
5
|
stylesheet '../../../zurb-foundation-4.3.1/scss/foundation/_variables.scss', :to => '_foundation-settings.scss'
|
|
6
6
|
stylesheet '../../scss/rootbeer/_variables.scss', :to => '_rootbeer-settings.scss'
|
|
7
|
-
stylesheet '../../scss/editor-style.scss',
|
|
8
|
-
stylesheet '../../scss/login-style.scss',
|
|
9
|
-
stylesheet 'scss/app.scss', :to => 'app.scss'
|
|
7
|
+
stylesheet '../../scss/rootbeer/editor-style.scss', :to => 'editor-style.scss'
|
|
8
|
+
stylesheet '../../scss/rootbeer/login-style.scss', :to => 'login-style.scss'
|
|
9
|
+
stylesheet 'scss/app.scss', :to => 'app.scss'
|
|
10
10
|
|
|
11
11
|
# Make sure you list all the project template files here in the manifest.
|
|
12
12
|
file '404.php'
|
|
13
|
-
file 'screenshot.png'
|
|
14
|
-
file 'MIT-LICENSE.txt'
|
|
15
|
-
file 'footer.php'
|
|
16
|
-
file 'header.php'
|
|
17
13
|
file 'favicon.ico'
|
|
14
|
+
file 'footer.php'
|
|
18
15
|
file 'functions.php'
|
|
16
|
+
file 'header.php'
|
|
17
|
+
file 'screenshot.png'
|
|
19
18
|
file 'searchform.php'
|
|
20
19
|
file 'sidebar.php'
|
|
21
20
|
file 'single.php'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rootbeer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Medeski
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2013-10-
|
|
12
|
+
date: 2013-10-08 00:00:00 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -57,7 +57,6 @@ files:
|
|
|
57
57
|
- scss/rootbeer/components/header.scss
|
|
58
58
|
- scss/rootbeer/components/main.scss
|
|
59
59
|
- scss/rootbeer/components/sidebar.scss
|
|
60
|
-
- scss/rootbeer/components/widgets-bottom.scss
|
|
61
60
|
- scss/rootbeer/editor-style.scss
|
|
62
61
|
- scss/rootbeer/login-style.scss
|
|
63
62
|
- templates/project/404.php
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
// This is your framework's main stylesheet. Use it to import all default modules.
|