volt 0.8.22.beta1 → 0.8.22.beta2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 710bbd40c4e0f2a2ee402f97df5d82d1a6a57704
4
- data.tar.gz: d21e4a67eb50b440710ab0abbd20f5c4b90da1ca
3
+ metadata.gz: 5875c7df22b5abe60b184bcacdacb694df05610d
4
+ data.tar.gz: dcb1674a686b781bfcaa59a207fd26935696145e
5
5
  SHA512:
6
- metadata.gz: 1b544c000e50d4760a799bb63ae4a90a772b2dddff295063c93316dc09335c6c7664b97cc05d77d361dfb587298b90800ad62608a567e224179b9e10e5bb3034
7
- data.tar.gz: 63cca01208dd44244a9aeae62319c1187e8bd393846e1f904277a7f0ee021eecfe8d6573bfce15c85b66c36179eced0396e19e09a3eaeba89fd821174a6f6aef
6
+ metadata.gz: 91cc32e4a3903cf3a39ccf8cd410162eccc5231359ce07ad3755ff9c3c8e98461f8e3d94ec6697863b9cd3d4cc49b9f7f76e0e76741eb2bcba2c2c204c7a1f7c
7
+ data.tar.gz: 7a6f53b64c30accb4f822b0cf0872ff523d9cf0ea33974b76d9a1caf7fca5890178867d871faddea087a4e6b3b03c68405bc2ec373101d157f20340e0d765907
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.22.beta1
1
+ 0.8.22.beta2
@@ -11,6 +11,9 @@ gem 'volt-bootstrap'
11
11
  # Simple theme for bootstrap, remove to theme yourself.
12
12
  gem 'volt-bootstrap-jumbotron-theme'
13
13
 
14
+ # User templates for login, signup, and logout menu.
15
+ gem 'volt-user-templates'
16
+
14
17
  # Server for MRI
15
18
  platform :mri do
16
19
  gem 'thin', '~> 1.6.0'
@@ -6,3 +6,6 @@ component 'bootstrap'
6
6
 
7
7
  # a default theme for the bootstrap framework
8
8
  component 'bootstrap-jumbotron-theme'
9
+
10
+ # provides templates for login, signup, and logout
11
+ component 'user-templates'
@@ -0,0 +1,5 @@
1
+ # By default Volt generates this user model which inherits from Volt::User,
2
+ # you can rename this if you want.
3
+ class User < Volt::User
4
+
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: volt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.22.beta1
4
+ version: 0.8.22.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Stout
@@ -673,6 +673,7 @@ files:
673
673
  - templates/project/app/main/config/routes.rb
674
674
  - templates/project/app/main/controllers/main_controller.rb
675
675
  - templates/project/app/main/models/.empty_directory
676
+ - templates/project/app/main/models/user.rb
676
677
  - templates/project/app/main/tasks/.empty_directory
677
678
  - templates/project/app/main/views/main/about.html
678
679
  - templates/project/app/main/views/main/index.html