forked from linuxfrorg/linuxfr.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
77 lines (70 loc) · 2.33 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
source 'https://rubygems.org'
gem "rails", "~>3.2.13"
gem "acts_as_list", "~>0.1.6"
gem "albino", "~>1.3"
gem "bitfields", "~>0.4"
gem "canable", "~>0.1"
gem "carrierwave", "~>0.6"
gem "devise", "~>2.0"
gem "diff_match_patch", github: "nono/diff_match_patch-ruby", require: "diff_match_patch"
gem "french_rails", "~>0.2"
gem "friendly_id", "~>4.0"
gem "haml", "~>3.1"
gem "html_spellchecker", "~>0.1"
gem "html_truncator", "~>0.3"
gem "htmlentities", "~>4.3"
gem "inherited_resources", "~>1.2"
gem "kaminari", "~>0.12"
gem "mini_magick", "~>3.3"
gem "mysql2", "~>0.3"
gem "nokogiri", "~>1.5"
gem "oauth2", "~>0.6"
gem "rinku", "~>1.2"
gem "redcarpet", "~>2.1"
gem "hiredis", "~>0.3"
gem "redis", "~>2.2", :require => ["redis/connection/hiredis", "redis"]
gem "sanitize", "~>2.0"
gem "sitemap_generator", "~>2.1"
gem "simple_autocomplete", "~>0.3"
gem "state_machine", "~>1.1"
gem "tire", "~>0.4"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem "jquery-rails", "~>1.0"
gem "sass-rails", "~>3.2"
gem "coffee-rails", "~>3.2"
gem "libv8", "~>3.11"
gem "therubyracer", "~>0.9", :require => 'v8'
gem "uglifier"
end
# Rspec-rails must be in development for rake stats and in test for normal stuff
group :development, :test do
gem "rspec-rails", "~>2.9"
end
group :development do
gem "annotate"
gem "autotest-standalone"
gem "better_errors"
gem "capistrano"
gem "capistrano-maintenance"
gem "haml-rails"
gem "letter_opener"
gem "mo"
gem "pry-rails"
gem "quiet_assets"
gem "desi"
gem "thin"
end
group :test do
gem "database_cleaner", "~>0.7"
gem "factory_girl_rails", "~>1.6"
gem "faker", "~>0.9"
gem "fuubar", "~>1.0"
gem "spork", "~>0.9"
gem "webrat", "~>0.7"
end
group :production do
gem "unicorn", "~>4.6"
gem "redis-activesupport", "~>3.2"
end