-
Notifications
You must be signed in to change notification settings - Fork 196
/
Gemfile
64 lines (47 loc) · 1.47 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
source 'http://rubygems.org'
gemspec
# volt-mongo gem for testing
gem 'volt-mongo'
# Use rbnacl for message bus encrpytion
# (optional, if you don't need encryption, disable in app.rb and remove)
gem 'rbnacl', require: false
gem 'rbnacl-libsodium', require: false
# temp until 0.8.0 of opal
# gem 'opal-rspec', github: 'opal/opal-rspec'
group :development, :test do
# For testing the kitchen sink app
# Twitter bootstrap
gem 'volt-bootstrap'
# Simple theme for bootstrap, remove to theme yourself.
gem 'volt-bootstrap_jumbotron_theme'
# For testing
gem 'volt-fields'
# For testing
gem 'volt-user_templates'
# For running rubocop
gem 'rubocop', require: false
end
group :development, :test do
platform :mri do
# For running tests
gem 'thin'
end
platform :jruby do
# For running tests
gem 'puma'
end
end
platform :mri do
# The implementation of ReadWriteLock in Volt uses concurrent ruby and ext helps performance.
gem 'concurrent-ruby-ext'
# For debugging
gem 'pry-byebug', '~> 2.0.0', require: false
# For Yard Formatting, in MRI block because redcarpet doesn't install on jruby
gem 'redcarpet', '~> 3.2.2', require: false
gem 'github-markup', '~> 1.3.1', require: false
# Sauce has a dependency that doesn't run on ruby <= 2.0.0
# (which older jruby versions don't support)
# TODO: Move out of MRI block once jruby 9k is outs
gem 'sauce', '~> 3.5.3', require: false
gem 'sauce-connect', '~> 3.5.0', require: false
end