-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (47 loc) · 1.08 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
source "https://rubygems.org"
ruby "2.3.1"
gem "rails", "~> 5.0.0"
gem "coffee-rails"
gem "dotenv-rails"
gem "font-awesome-rails"
gem "gemoji"
gem "jbuilder"
gem "jquery-rails"
gem "kramdown"
gem "materialize-sass"
gem "omniauth-slack"
gem "paper_trail"
gem "pg"
gem "puma"
gem "react-rails"
gem "redis"
gem "rinku"
gem "rouge", "~> 1.11.0" # Kramdown is not compatible with Rouge 2.0. See https://github.com/gettalong/kramdown/issues/350
gem "sass-rails"
gem "slack-ruby-client"
gem "slim-rails"
gem "truncate_html"
gem "uglifier"
group :development, :test do
gem "database_cleaner"
gem "launchy"
gem "minitest-around"
gem "minitest-rails-capybara"
gem "minitest-stub_any_instance"
gem "poltergeist"
gem "pry-byebug"
gem "pry-rails"
gem "tapp", git: "https://github.com/5t111111/tapp.git", branch: "add-decoration-feature"
gem "vcr"
gem "webmock"
end
group :development do
gem "listen"
gem "spring"
gem "spring-watcher-listen"
gem "web-console"
end
group :production do
gem "rails_12factor"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]