-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
64 lines (54 loc) · 1.46 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
source 'https://rubygems.org'
gem 'rails', '~> 4.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
gem 'mysql2', group: :mysql
gem 'pg', group: :postgresql
gem 'sqlite3', group: :sqlite3
# Use Puma as the app server
gem 'puma'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-migrate-rails'
gem 'jquery-ui-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
gem 'acts_as_commentable'
gem 'bcrypt-ruby'
gem 'cancancan'
gem 'cocoon'
gem "dotenv-rails"
gem 'haml'
gem 'localized_language_select', github: "frab/localized_language_select", branch: 'master'
gem 'nokogiri'
gem "paperclip", "~> 4.1"
gem 'paper_trail'
gem 'prawn', '< 1.0'
gem 'prawn_rails'
gem 'ransack'
gem 'ri_cal'
gem 'simple_form'
gem 'sucker_punch'
gem 'transitions', :require => ["transitions", "active_record/transitions"]
gem 'will_paginate'
group :development, :test do
gem 'bullet'
gem 'pry-rails'
gem 'pry-byebug'
end
group :test do
gem 'database_cleaner'
gem 'factory_girl_rails', '~> 4.0'
gem 'shoulda'
end
group :doc do
gem 'redcarpet' # documentation
gem 'github-markdown' # documentation
gem 'yard' # documentation
#gem 'rails-erd' # graph
#gem 'ruby-graphviz', :require => 'graphviz' # Optional: only required for graphing
end