-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
96 lines (86 loc) · 2.42 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
source 'https://rubygems.org'
ruby '2.3.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2'
gem 'haml-rails'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
# Use SafeYAML for user defined yml parsing
gem "safe_yaml", require: false
gem 'pg'
gem 'redis'
gem 'connection_pool'
gem 'react-rails', '~> 1.6.0'
gem 'react-bootstrap-rails'
gem 'wicked'
gem 'sidekiq'
gem 'sinatra', require: false
gem 'select2-rails'
gem 'draper'
gem 'bootstrap-sass'
gem 'bootstrap-social-rails'
gem 'font-awesome-rails'
gem 'exception_notification', '~> 4.1.4'
gem 'slack-notifier'
gem 'gretel'
gem 'rack-timeout'
gem 'redcarpet'
gem 'rack-attack'
gem 'awesome_print'
gem 'sshkey'
gem 'devise'
gem 'cancancan', '~> 1.10'
gem 'underscore-rails'
gem 'octokit', '~> 4.0'
gem 'attr_encrypted'
# commit that fixes the creation of tokens in client_credentials flow
gem 'doorkeeper', '~>3.1.0'
gem 'oauth2'
gem 'omniauth-github'
gem 'active_model_serializers', github: 'rails-api/active_model_serializers', ref: '1f0886' # 0.10 rc version
gem 'simple_form'
gem 'actionview-encoded_mail_to'
gem 'fog-aws'
# TODO Switch to the official gem as soon as this branch is merged.
# We implemented some missing BitBucket API support ourselves and fixed a few problems.
gem 'bitbucket_rest_api', github: 'ispyropoulos/bitbucket', branch: 'testributor-extra'
gem 'oauth'
gem 'puma'
gem 'puma-heroku'
group :production do
gem 'rails_12factor'
gem 'newrelic_rpm'
gem 'scout_apm'
end
group :test do
gem 'test_after_commit'
gem 'factory_girl_rails'
gem 'capybara'
gem 'poltergeist'
gem 'minitest-reporters'
gem 'minitest-rails'
gem 'minitest-rails-capybara'
gem 'minitest-spec-rails'
gem 'mocha'
gem 'vcr'
gem 'webmock'
gem 'database_cleaner'
gem 'timecop'
end
group :development, :test do
gem 'byebug'
# Call 'binding.pry' anywhere in the code to stop execution and get a debugger console
gem 'pry-rails'
gem 'pry-nav'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end