-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
70 lines (52 loc) · 1.91 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
66
67
68
69
70
source 'https://rubygems.org'
gem 'volt', '0.9.5'
# volt uses mongo as the default data store.
gem 'volt-mongo', '~> 0.1.0'
gem 'volt-fields'
# 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'
# Add ability to send e-mail from apps.
gem 'volt-mailer', '~> 0.1.0'
gem 'volt-datetime_picker', '0.1.0heri', git: 'https://github.com/heri/volt-datetime_picker'
gem 'volt-upload', git: 'https://github.com/andrew-carroll/volt-upload'
# simplify gem by Mastercard to manage recurring donations
gem 'simplify'
gem 'volt-awesome', git: 'https://github.com/heri/volt-awesome'
gem "volt-osmaps", :path => "/Users/heri/Sites/volt-osmaps"
# 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.1'
gem 'chromedriver-helper', '~> 1.0.0'
gem 'poltergeist', '~> 1.6.0'
end
# Server for MRI
platform :mri, :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'
gem 'bson_ext', '~> 1.9.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.0', require: false
# Image compression gem for precompiling assets
gem 'image_optim'
# Provides precompiled binaries for image compression
gem 'image_optim_pack'
end