-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
128 lines (96 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
source 'http://rubygems.org'
gem 'rails', '~> 4.1.16'
gem 'tilt', '1.4.1'
# Servers
gem 'foreman'
gem 'puma'
gem 'activerecord-session_store', '0.1.0'
# TODO: Move from protected attributes to Strong Parameters
gem 'protected_attributes', '1.0.8'
### database
gem 'pg', '0.17.1'
# acts as tree
gem 'acts_as_tree', '2.0.0'
# elasticsearch
gem 'tire', '0.6.2'
# gem "redis"
gem 'nokogiri'
# LDAP
gem 'net-ldap', :git => 'git://github.com/ruby-ldap/ruby-net-ldap.git'
# pdf and images
gem 'pdfkit', '0.8.2'
gem 'imgkit', '1.3.6'
gem 'paperclip', '4.3.1'
gem 'serenity', '0.2.4', :git => 'git://github.com/theoo/serenity.git'
gem 'rubyzip', '~> 1.2.1'
gem 'recursive-open-struct', '0.4.5'
# password validation
gem 'password_strength', '0.3.2'
### Views/UI specific
gem 'will_paginate', '3.0.7'
gem 'haml_coffee_assets', '1.1.0'
gem 'sass-rails', '4.0.3'
gem 'haml-rails', '0.5.3'
gem 'spine-rails', '0.1.0'
gem 'dotiw', github: 'radar/dotiw'
gem 'coffee-rails', '4.0.1'
gem 'jquery-turbolinks', '2.0.2'
gem 'turbolinks', '2.2.2'
gem 'gon'
# gem 'jbuilder'
gem 'execjs', '1.4.0'
gem 'therubyracer', '0.12.1', platforms: :ruby
# gem 'i18n-js', '2.1.2'
gem "i18n-js", "3.0.2"
gem 'i18n-tasks'
gem 'lit'
gem 'yui-compressor', '0.12.0'
### maps
gem 'geoip', '1.3.3'
gem 'geokit', '1.7.1'
### authentication and authorization
gem 'devise', '3.5.6'
gem 'devise-i18n', '0.10.4'
gem 'devise-encryptable', '0.2.0'
gem 'cancancan', '~> 1.7.0'
### Finances
gem 'money', '6.5.0'
gem 'monetize', '1.1.0'
### MailChimp
gem 'mailchimp-api', require: 'mailchimp'
### rake
gem 'rake-progressbar', '0.0.5'
gem 'rake', "< 11.0"
# Monitoring
# gem 'rails_exception_handler', "~> 2"
### custom gem
# gem 'plugin', :path => 'path/to/circl/plugin'
### development console and testing
group :development, :test do
### Documentation
gem 'railroady', '1.1.1'
# gem 'byebug'
### Test
gem 'factory_girl_rails', '4.4.0'
gem 'rspec-rails', '3.0.2'
gem 'syntax', '1.2.0'
### IRB
# gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
### Misc
# gem 'pry-byebug'
gem 'spork-rails', '4.0.0'
gem 'spring', '1.1.3'
gem 'web-console', '~> 2.0'
gem 'quiet_assets'
gem 'meta_request'
end
# FUTURE
# gem 'websocket-rails'
# iCalendar
# gem 'icalendar'
# Misc
# group :doc do
# # bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', require: false
# end
ruby '2.1.10'