growbot-web 0.0.4 → 0.0.5
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/Rakefile +5 -0
- data/lib/growbot/web/version.rb +1 -1
- data/lib/growbot/web/views/layout.haml +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25e93075aaadc42f721bc3b0e95893e6d69c5817
|
|
4
|
+
data.tar.gz: 9285e602d856e372af5c40a9622a7fc34a225c9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ba55f8d9695da2a3588e1154ac23ef2855901ab9df554b985024fb7015db7105471a0cb06e7a153520fb0223cdeed86f74c8ab76f1080f3207602ed078fc6f1
|
|
7
|
+
data.tar.gz: 4592bc8e9ef94095da3983868cdd1a9fb04aa222c2977396c4638b6a908398477d88e65544e83f13529eabc50ff813f5cae312f6763121348e73fc57e8c5adda
|
data/Rakefile
CHANGED
|
@@ -37,3 +37,8 @@ namespace :assets do
|
|
|
37
37
|
desc "Compile all static assets (CSS and JS) from source"
|
|
38
38
|
task :compile => ['js:compile', 'css:compile']
|
|
39
39
|
end
|
|
40
|
+
|
|
41
|
+
# desc "Bump the Gem version"
|
|
42
|
+
# task :bump do
|
|
43
|
+
# File.open File.join(File.dirname(__FILE__), 'lib', 'growbot', 'web', 'version.rb')
|
|
44
|
+
# end
|
data/lib/growbot/web/version.rb
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
%html(lang="en")
|
|
2
2
|
%head
|
|
3
|
+
%meta(charset="utf-8")
|
|
4
|
+
%meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
|
3
5
|
%title Growbot
|
|
4
|
-
%link(href="/vendor/colorbrewer/colorbrewer.css" type="text/css" rel="stylesheet")
|
|
5
6
|
%link(href="/vendor/normalize-css/normalize.css" type="text/css" rel="stylesheet")
|
|
6
7
|
%link(href="/stylesheets/app.css" type="text/css" rel="stylesheet")
|
|
7
8
|
%body
|
|
@@ -17,5 +18,4 @@
|
|
|
17
18
|
= yield
|
|
18
19
|
%script(src="/vendor/jquery/dist/jquery.js")
|
|
19
20
|
%script(src="/vendor/d3/d3.js")
|
|
20
|
-
%script(src="/vendor/colorbrewer/colorbrewer.js")
|
|
21
21
|
%script(src="/javascripts/app.js")
|