-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
131 lines (101 loc) · 1.83 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
129
130
131
# Settings
# ========
source 'http://rubygems.org'
# Rails
# =====
gem 'rails'
# Unicorn
# =======
gem 'unicorn'
# Database
gem 'mysql2'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'therubyracer'
gem 'uglifier'
gem 'compass-rails'
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Test
# ===
group :test do
# Matchers/Helpers
gem 'shoulda'
end
group :test, :development do
# Framework
gem 'rspec-rails'
# Fixtures
gem 'factory_girl_rails'
gem 'database_cleaner'
# Debugger
gem 'pry-rails'
gem 'pry-byebug'
gem 'better_errors'
gem 'binding_of_caller'
end
# Development
# ===========
group :development do
# RDoc
gem 'rdoc'
# Deployment
gem 'capistrano', '~> 2.15.5'
gem 'capistrano-rbenv', '~> 1.0'
gem 'capones_recipes'
gem 'quiet_assets'
# Code quality
gem 'rubocop', require: false
end
# Standard helpers
# ================
gem 'haml-rails'
gem 'formtastic'
gem 'will_paginate', git: 'https://github.com/huerlisi/will_paginate.git', branch: 'show_always'
gem 'inherited_resources'
gem 'has_scope'
gem 'i18n_rails_helpers'
gem 'simple-navigation'
gem 'nokogiri'
# Katalog
# =======
# Authentication
gem 'devise'
# Authorization
gem 'cancan'
# Tagging
gem 'acts-as-taggable-on'
# Search
gem 'thinking-sphinx'
# Spellchecking
gem 'ffi-aspell'
# Reports
gem 'prawn_rails'
gem 'prawn'
gem 'prawn-table'
# CRUD helpers
gem 'show_for'
# WYSIWYG Editor
gem 'ckeditor'
# Change log for model data
gem 'paper_trail'
gem 'revertible_paper_trail'
# Generate excel files
gem 'spreadsheet'
# Load html content
gem 'mechanize'
# Date handling
gem 'holidays'
# Monitoring
# ==========
gem 'settingslogic'
group :staging, :production do
# Traffic
gem 'rack-google-analytics'
# Exceptions
gem 'airbrake'
end