forked from linuxfrorg/linuxfr.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
73 lines (66 loc) · 2.41 KB
/
Gemfile
File metadata and controls
73 lines (66 loc) · 2.41 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
67
68
69
70
71
72
73
source 'https://rubygems.org'
gem "rails", "4.2.7.1"
gem "actionpack-page_caching", "~>1.0"
gem "ansi", "~>1.4", require: nil
gem "acts_as_list", "~>0.4"
gem "bitfields", "~>0.4"
gem "canable", "~>0.1"
gem "carrierwave", "~>0.10"
gem "devise", "~>3.3"
gem "diff_match_patch", git: "https://github.com/nono/diff_match_patch-ruby.git", require: "diff_match_patch"
gem "doorkeeper", "~>2.1"
gem "ffi-hunspell", git: "https://github.com/postmodern/ffi-hunspell.git"
gem "french_rails", "~>0.3"
gem "friendly_id", "~>5.1"
gem "haml", "~>4.0"
gem "html-pipeline-linuxfr", "~>0.14"
gem "html_spellchecker", "~>0.1"
gem "html_truncator", "~>0.4"
gem "htmlentities", "~>4.3"
gem "inherited_resources", "~>1.6"
gem "kaminari", "~>0.15"
gem "mini_magick", "~>3.8"
gem "mysql2", "~>0.3"
gem "nokogiri", "1.6.5" # FIXME see https://github.com/sparklemotion/nokogiri/issues/1233
gem "rinku", "~>1.7"
gem "hiredis", "~>0.5"
gem "redis", "~>3.0", require: ["redis/connection/hiredis", "redis"]
gem "sitemap_generator", "~>2.1"
gem "state_machine", "~>1.2"
# Gems used for assets
gem "jquery-rails", "~>4.0"
gem "sass-rails", "~>5.0"
gem "coffee-rails", "~>4.1"
gem "therubyracer", "~>0.12", require: 'v8'
gem "uglifier"
# Rspec-rails must be in development for rake stats and in test for normal stuff
group :development, :test do
gem "rspec-rails", "~>3.2"
end
group :development do
gem "annotate"
gem "better_errors"
gem "binding_of_caller"
gem "byebug"
gem "capistrano", "~>2.15", git: 'https://github.com/capistrano/capistrano.git', branch: 'legacy-v2'
gem "capistrano-maintenance"
gem "letter_opener"
gem "mo"
gem "pry-rails"
gem "quiet_assets"
gem "spring"
gem "sushi"
gem "thin"
gem "web-console", "~> 2.1"
end
group :test do
gem "database_cleaner", "~>1.2"
gem "factory_girl_rails", "~>1.6"
gem "fuubar", "~>2.0"
gem "capybara", "~>2.4"
end
group :production, :alpha do
gem "unicorn", "~>5.1"
gem "gctools", "~>0.2"
gem "redis-activesupport", "~>4.0"
end