-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
46 lines (35 loc) · 1.14 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
source 'https://rubygems.org'
ruby '2.2.3'
gem 'volt', '0.9.5'
gem 'volt-mongo', github: 'ylluminarious/volt-mongo'
gem 'opal-phaser', git: 'https://github.com/orbitalimpact/opal-phaser.git'
gem 'volt-code_highlight', github: 'ylluminarious/volt-code_highlight'
gem 'faye-websocket'
gem 'websocket-driver', '0.5.4'
# The following gem's are optional for themeing
# 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.1.3'
platform :ruby, :jruby do
gem 'rbnacl', require: false
gem 'rbnacl-libsodium', require: false
end
gem 'uglifier', '>= 2.4.0', require: false
gem 'csso-rails', '~> 0.3.4', require: false
group :development, :test do
# Testing dependencies
gem 'rspec', '~> 3.2.0'
gem 'opal-rspec', '~> 0.4.2'
gem 'capybara', '~> 2.4.2'
gem 'selenium-webdriver', '~> 2.43.0'
gem 'chromedriver2-helper', '~> 0.0.8'
gem 'poltergeist', '~> 1.5.0'
end
# Server for MRI
platform :mri do
gem 'thin', '~> 1.6.0'
gem 'bson_ext'#, '~> 1.9.0'
end