-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
41 lines (32 loc) · 1013 Bytes
/
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
source 'https://rubygems.org'
ruby "2.2.1"
gem 'volt', '0.9.2'
# 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.2.0'
# Add ability to send e-mail from apps.
gem 'volt-mailer', '~> 0.0.2'
group :development, :test do
gem 'pry-byebug'
end
group :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'
gem "codeclimate-test-reporter", require: false
end
# Server for MRI
platform :mri do
# The implementation of ReadWriteLock in Volt uses concurrent ruby and ext helps performance.
gem 'concurrent-ruby-ext', '~> 0.8.0'
gem 'thin', '~> 1.6.0'
gem 'bson_ext', '~> 1.9.0'
end