volt 0.8.19 → 0.8.20
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 +4 -0
- data/VERSION +1 -1
- data/lib/volt/cli.rb +2 -0
- data/lib/volt/server/component_templates.rb +1 -0
- data/lib/volt/server/rack/index_files.rb +1 -1
- 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: 416145e75f492dc4623668096f906733c3fd4fcd
|
4
|
+
data.tar.gz: 0d587e65f65f75a4a8f1ed1b9215e00c672cff9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 939aaf701b9e01b58b95bf42e9da649137a16bf472bd268c5835a1b99da81eb3d03efb33c7e2e77b158b85ef466f108d283b343ca007272803a95bf887a4ab69
|
7
|
+
data.tar.gz: bb9732f7effb3d1d66af56461a53a85652df06074a27c1ac5dba2f5a2bbfe941e41fe15953cb18e30b78bf21c092b1b126509557b8180c46434f28b7aa2d6842
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.8.20 - 2014-11-05
|
4
|
+
### Changed
|
5
|
+
- fix secure random bug from 0.8.19 :-)
|
6
|
+
|
3
7
|
## 0.8.19 - 2014-11-05
|
4
8
|
### Breaking Changes
|
5
9
|
- the default index page is now moved from ```public/index.html``` to ```config/base/index.html``` Please update your app's accordingly. Since the public page is essentially static at the moment, public will only be used for asset pre-compilation (and index.html will be rendered in place)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.8.
|
1
|
+
0.8.20
|
data/lib/volt/cli.rb
CHANGED
@@ -12,6 +12,8 @@ module Volt
|
|
12
12
|
desc 'new PROJECT_NAME', 'generates a new project.'
|
13
13
|
|
14
14
|
def new(name)
|
15
|
+
require 'securerandom'
|
16
|
+
|
15
17
|
# Grab the current volt version
|
16
18
|
version = File.read(File.join(File.dirname(__FILE__), '../../VERSION'))
|
17
19
|
directory('project', name, version: version, name: name)
|