-
Notifications
You must be signed in to change notification settings - Fork 54
/
Gemfile
78 lines (70 loc) · 2.63 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem "rails", "~>5.2"
gem "nio4r", "2.5.2" # 2.5.3 is not compatible with ruby 2.3
gem "actionpack-page_caching", github: "linuxfrorg/actionpack-page_caching"
gem "ansi", "~>1.4", require: false
gem "acts_as_list", "~>0.4"
gem "bitfields", "~>0.4"
gem "bootsnap", "~>1.3", require: false
gem "canable", "~>0.1"
gem "carrierwave", "~>1.1"
gem "devise", "~>4.3"
gem "diff_match_patch", github: "nono/diff_match_patch-ruby", require: "diff_match_patch"
gem "doorkeeper", "~>4.2"
gem "ffi-hunspell", github: "postmodern/ffi-hunspell"
gem "french_rails", "~>0.4"
gem "friendly_id", "~>5.1"
gem "haml", "~>5.0"
gem "html-pipeline-linuxfr", "~>0.15"
gem "html_spellchecker", "~>0.1"
gem "html_truncator", "~>0.4"
gem "htmlentities", "~>4.3"
gem "inherited_resources", "~>1.8"
gem "kaminari", "~>1.2"
gem "mini_magick", "~>4.9"
gem "mysql2", "~>0.5.0"
gem "nokogiri", "~>1.10"
gem "rinku", "~>2.0"
gem "redis", "~>4.0"
gem "sitemap_generator", "~>2.1"
gem "state_machine", "~>1.2"
# Gems used for assets
assets = !%w(production alpha).include?(ENV['RAILS_ENV'])
assets = true if ENV['RAILS_GROUPS'] == "assets"
gem "jquery-rails", "~>4.0", require: assets
gem "coffee-rails", "~>4.1", require: assets
gem "sass-rails", "~>5.0", require: assets
gem "rails-sass-images", require: assets
gem "uglifier", require: assets
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: :mri
end
group :development do
gem "annotate"
gem "better_errors"
gem "binding_of_caller"
gem "capistrano", "~>2.15", github: 'capistrano', branch: 'legacy-v2'
gem "capistrano-maintenance"
gem "letter_opener"
gem "listen", github: "guard/listen"
gem "mo"
gem "pry-rails"
gem "spring"
gem "sushi"
gem "thin"
gem "web-console"
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 2.15"
gem "selenium-webdriver"
end
group :production, :alpha do
gem "unicorn", "~>5.1"
gem "gctools", "~>0.2"
end