volt new overlay

This commit is contained in:
Torsten Ruger
2015-07-29 17:26:04 +03:00
parent 9c7a333127
commit a0b37977a9
15 changed files with 338 additions and 128 deletions

26
Gemfile
View File

@ -1,6 +1,6 @@
source 'https://rubygems.org'
gem 'volt', :path => "../volt"
gem 'volt', '0.9.4'
# volt uses mongo as the default data store.
gem 'volt-mongo', '~> 0.1.0'
@ -9,16 +9,28 @@ gem 'volt-mongo', '~> 0.1.0'
# Twitter bootstrap
gem 'volt-bootstrap', '~> 0.0.10'
# Simple theme for bootstrap, remove to theme yourself.
gem 'volt-bootstrap_jumbotron_theme', '~> 0.1.0'
# User templates for login, signup, and logout menu.
gem 'volt-user_templates', '~> 0.4.0'
# Add ability to send e-mail from apps.
gem 'volt-mailer', '~> 0.1.0'
# Use rbnacl for message bus encrpytion
# (optional, if you don't need encryption, disable in app.rb and remove)
#
# Message Bus encryption is not supported on Windows at the moment.
platform :ruby, :jruby do
gem 'rbnacl', require: false
gem 'rbnacl-libsodium', require: false
end
# Asset compilation gems, they will be required when needed.
gem 'csso-rails', '~> 0.3.4', require: false
gem 'uglifier', '>= 2.4.0', require: false
gem "parslet" , path: "../parslet"
#gem "salama" , path: "../salama"
gem "salama-reader" , path: "../salama-reader"
gem "salama-object-file" , path: "../salama-object-file"
group :test do
# Testing dependencies
gem 'rspec', '~> 3.2.0'