-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
executable file
·66 lines (61 loc) · 1.72 KB
/
Gemfile
File metadata and controls
executable file
·66 lines (61 loc) · 1.72 KB
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
source 'https://rubygems.org'
gem 'rails', '~> 4.2.4'
gem 'sqlite3'
gem 'rails_config', '~> 0.4.2'
gem 'devise', '~> 3.4.1'
gem 'devise-i18n', '~> 0.9.0'
gem 'paperclip', '~> 4.3.0'
gem 'kangal', '~> 1.2.3'
# gem 'rack-timeout', '~> 0.2.4'
gem 'annotate', '~> 2.6.0'
gem 'recipient_interceptor', '~> 0.1.2'
gem 'rails-i18n', '~> 4.0.4'
gem 'ransack', '~> 1.6.6'
gem 'polyamorous', '~> 1.2.0'
# Deployment gems
gem 'capistrano', '~> 3.4.0'
gem 'unicorn', '~> 4.9.0'
group :development do
gem 'capistrano-rails', '~> 1.1', require: false
gem 'capistrano-bundler', '~> 1.1', require: false
gem 'sshkit-sudo', require: false
gem 'capistrano-maintenance', '~> 1.0', require: false
gem 'recipes_matic', '~> 1.2.1'
end
gem 'exception_notification', '~> 4.1.1'
gem 'responders', '~> 2.1.0'
gem 'will_paginate', '~> 3.0.4'
gem 'will_paginate-bootstrap', '~> 0.2.3'
gem 'will-paginate-i18n', '~> 0.1.13'
gem 'rails_best_practices', '~> 1.15.1'
gem 'simple_form', '~> 3.1.0'
gem 'show_for', '~> 0.4.0'
gem 'uglifier', '~> 2.7.1'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails', '~> 4.0.4'
gem 'turbolinks', '~> 2.5.3'
gem 'haml', '~> 4.0.2'
gem 'haml-rails', '0.9.0'
gem 'breadcrumbs_on_rails', '~> 2.3.1'
gem 'blankable', '~> 0.2.0'
gem 'hierapolis-rails', '~> 1.1.3'
gem 'sass-rails', '~> 5.0.3'
gem 'compass-rails', '~> 2.0.5'
gem 'bootstrap-sass', '~> 3.3.4'
# gem 'sass-rails', '~> 4.0.0'
# gem 'compass-rails', '~> 1.1'
# gem 'bootstrap-sass', '~> 3.3.4'
# gem 'chosen-rails', '1.4.1'
# gem 'chosen-sass-bootstrap-rails', '0.0.2'
group :doc do
gem 'sdoc', require: false
end
group :development, :test do
gem 'better_errors'
gem 'letter_opener'
gem 'rspec-rails'
gem 'binding_of_caller'
gem 'katip'
gem 'capybara'
gem 'bullet'
end