-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
56 lines (51 loc) · 1.1 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
ruby '2.4.1'
source 'https://rubygems.org' do
gem 'coffee-rails'
gem 'i18n'
gem 'jbuilder'
gem 'jquery-rails'
gem 'therubyracer'
gem 'mysql2', '~> 0.3.21'
gem 'rails', '4.2.10'
gem 'slack-api'
gem 'slack_markdown'
gem 'slim-rails'
gem 'thin'
gem 'turbolinks'
gem 'unicorn'
group :development do
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-rbenv'
gem 'capistrano3-unicorn', require: false
gem 'web-console', '~> 2.0'
end
group :development, :test do
gem 'better_errors'
gem 'bullet'
gem 'capybara'
gem 'capybara-screenshot'
gem 'factory_girl_rails'
gem 'ffaker'
gem 'json_expressions'
gem 'poltergeist'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rubocop', require: false
end
group :test do
gem 'database_rewinder'
gem 'rspec-rails'
gem 'rspec_junit_formatter'
gem 'serverspec'
gem 'simplecov', require: false
gem 'validation_examples_matcher'
end
group :staging, :production do
gem 'eventmachine', '1.2.0.1'
end
group :doc do
gem 'yard'
end
end