forked from koffeinfrei/planning-poker
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
65 lines (49 loc) · 1.66 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
source 'https://rubygems.org'
ruby '2.4.4'
gem 'volt', '0.9.6'
# volt uses mongo as the default data store.
gem 'volt-mongo', github: 'koffeinfrei/volt-mongo'
# The following gem's are optional for themeing
# Twitter bootstrap
gem 'volt-bootstrap', '~> 0.1.0'
# 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.1'
gem 'volt-slim'
gem 'rack-ssl'
# 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
group :test do
# Testing dependencies
gem 'rspec', '~> 3.2.0'
gem 'opal-rspec', '~> 0.4.2'
gem 'capybara', '~> 2.4.4'
gem 'selenium-webdriver', '~> 2.47'
gem 'chromedriver-helper', '~> 1.0'
gem 'poltergeist', '~> 1.6'
end
# Server for MRI
platform :mri, :mingw, :x64_mingw do
# The implementation of ReadWriteLock in Volt uses concurrent ruby and ext helps performance.
gem 'concurrent-ruby-ext', '~> 0.8.0'
# Thin is the default volt server, Puma is also supported
gem 'thin', '~> 1.6.0'
end
group :production do
# Asset compilation gems, they will be required when needed.
gem 'csso-rails', '~> 0.3.4', require: false
gem 'uglifier', '~> 2.4', require: false
# Image compression gem for precompiling assets
gem 'image_optim'
# Provides precompiled binaries for image compression
gem 'image_optim_pack'
end