-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
115 lines (89 loc) · 2.52 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
source 'https://rubygems.org'
gem 'rails', '3.2.22'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Server
# Puma
gem 'puma'
# Renames the app
# use "rails g rename:app_to New-Name" (remember the Upper-Case-Naming-Convention)
gem 'rename'
gem 'mysql2'
# Slug for Url
# https://github.com/norman/friendly_id
gem 'friendly_id'
# Simple Navigation (and breadcrumb)
# https://github.com/codeplant/simple-navigation
gem 'simple-navigation', '~> 4.0.3'
# https://github.com/pdf/simple-navigation-bootstrap
# (renderer for bootstrap)
gem 'simple-navigation-bootstrap'
# https://github.com/lassebunk/gretel
gem 'gretel'
gem 'mercury-rails', git: 'git://github.com/mediatainment/mercury'
gem 'jquery-migrate-rails' # is needed for mercury-rails (js console error)
gem 'ckeditor'
gem 'dropzonejs-rails' # drag and drop for mercury snippets and images
# Multilingual / Translation
# https://github.com/globalize/globalize
gem 'globalize', '~> 3.1.0'
# Authentication System
# https://github.com/plataformatec/devise
gem 'devise'
# Role Management
# https://github.com/CanCanCommunity/cancancan
gem 'cancancan'
# FILEUPLOAD (Carrierwave)
# https://github.com/carrierwaveuploader/carrierwave
gem 'carrierwave'
gem 'mini_magick'
# https://github.com/fog/fog
gem 'fog'
# SEO
# https://github.com/kpumuk/meta-tags
gem 'meta-tags'
# InPlace Editing
# https://github.com/janv/rest_in_place
gem 'rest_in_place'
# Assets
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'jquery-rails'
gem 'sass-rails'
gem 'compass-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'bootstrap-sass', '~> 3.3.4'
gem 'bootstrap-form', '~> 3.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development do
# create .env file in project root and load variables
# https://github.com/bkeepers/dotenv
# extended error stacktrace
gem 'better_errors'
gem 'rubymine_heaven'
gem 'bullet'
gem 'meta_request'
end
group :development, :test do
gem 'dotenv-rails'
gem 'rspec-rails', '~> 3.0'
gem 'cucumber-rails', :require => false
gem 'database_cleaner'
gem 'fabrication'
gem 'faker'
gem 'test-unit'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'