-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
110 lines (101 loc) · 2.28 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
source 'https://rubygems.org'
gem 'rails', '4.2.7.1'
gem 'pg'
gem 'devise'
gem 'devise-encryptable'
gem 'omniauth'
gem 'omniauth-oauth2'
gem 'omniauth-github'
gem 'cancancan'
gem 'actioncable', :git => 'https://github.com/rails/actioncable.git', :ref => '265535'
gem 'turbolinks', :git => 'https://github.com/rails/turbolinks.git'
gem 'sidekiq'
gem 'sinatra', :require => false
gem 'sidekiq-failures'
gem 'redis-namespace'
gem 'rambulance'
gem 'high_voltage'
gem 'config'
gem 'kaminari'
gem 'recaptcha', :require => 'recaptcha/rails'
gem 'rails-i18n'
gem 'valid_email'
gem 'rack-attack'
gem 'redis'
gem 'hiredis'
gem 'devise-async'
gem 'actionpack-action_caching'
gem 'passenger'
gem 'http_accept_language'
gem 'octokit'
gem 'cocoon'
gem 'omniauth-bitbucket'
# until fix this issue https://github.com/bitbucket-rest-api/bitbucket/issues/67
gem 'bitbucket_rest_api', :git => 'https://github.com/technoeleganceteam/bitbucket.git'
gem 'postmark-rails'
gem 'omniauth-gitlab'
gem 'gitlab'
gem 'draper'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'therubyracer', :platforms => :ruby
gem 'jquery-rails'
gem 'slim-rails'
gem 'sprockets'
gem 'bootstrap-sass'
gem 'font-awesome-sass'
gem 'js-routes'
gem 'sdoc', :group => :doc
source 'https://rails-assets.org' do
gem 'rails-assets-dragula'
gem 'rails-assets-select2'
gem 'rails-assets-voidberg--html5sortable'
gem 'rails-assets-js-cookie'
gem 'rails-assets-noty'
end
group :development do
gem 'puma'
gem 'quiet_assets'
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano-passenger'
gem 'capistrano-sidekiq'
gem 'rubocop'
gem 'fasterer'
gem 'traceroute'
gem 'bullet'
gem 'brakeman', :require => false
gem 'rails_best_practices'
gem 'reek'
gem 'slim_lint'
gem 'mdl'
gem 'bundler-audit'
gem 'flay'
end
group :development, :test do
gem 'foreman'
gem 'awesome_print'
gem 'rspec-rails'
gem 'pry'
gem 'pry-remote'
gem 'byebug'
gem 'spring'
gem 'faker'
gem 'capybara'
gem 'selenium-webdriver'
end
group :test do
gem 'webmock'
gem 'database_cleaner'
gem 'simplecov', :require => false
gem 'coveralls', :require => false
gem 'codeclimate-test-reporter', :require => nil
gem 'shoulda-matchers'
gem 'factory_girl_rails'
gem 'hashie'
end
group :production do
gem 'dalli'
end