-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathGemfile
More file actions
74 lines (62 loc) · 2.01 KB
/
Gemfile
File metadata and controls
74 lines (62 loc) · 2.01 KB
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '7.1.5.2'
gem "rest-client", git: "https://github.com/chef/rest-client", branch: "jfm/ucrt_update1"
gem 'chef', '~> 18.8.46'
gem 'jbuilder', '~> 2.11'
gem 'jquery-rails'
gem 'jwt' # For Zendesk SSO
gem 'config', '~> 4.1' # Replacement of rails_config gem
gem 'rb-readline', '~> 0.5.2', require: false
gem 'sass-rails', '>= 4.0.3'
gem 'turbolinks', '~> 5'
gem 'nokogiri', '1.18.9', platforms: :ruby # Force Ruby platform to avoid glibc compatibility issues
gem 'pg', '>= 0.18', '< 1.6' # active_record 4.2.8 pins this but doesn't manifest this in the gemspec for some reason
gem 'unicorn-rails',
git: "https://github.com/talktovikas/unicorn-rails.git",
branch: "vikas/rack"
gem 'mixlib-authentication', '>= 2.1', '< 4'
gem 'responders', '~> 3.0', '>= 3.0.1'
gem 'doorkeeper', '~> 5.0'
gem "sprockets-rails", ">= 3.4.2"
gem 'bigdecimal', '3.1.3'
gem 'veil', '~> 0.3.11',
git: "https://github.com/talktovikas/chef_secrets.git",
branch: "vikas/debug"
gem 'rack', '>= 3.2.4'
gem 'omniauth-chef', '~> 0.4.1',
git: "https://github.com/talktovikas/omniauth-chef.git",
branch: "vikas/chef-upgrade"
gem 'tzinfo-data'
#
# These gems require a javascript runtime. We don't want to ship a
# javascript runtime so we put them in a separate group such that they
# don't get automatically required by rake.
#
group :node do
gem 'coffee-rails', '~> 5.0'
gem 'uglifier', '~> 4.2'
end
group :development, :test do
gem 'rspec-rails', '~> 6.0'
gem 'rails-controller-testing'
gem 'pry-byebug'
gem 'mailcatcher'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'spring' # App preloading
gem 'spring-commands-rspec'
gem 'thor', '~> 1.4'
end
group :doc do
gem 'sdoc', require: false
end
group :test do
gem 'capybara', '~> 3.39'
gem 'factory_bot_rails', '~> 6.4'
gem 'selenium-webdriver', '~> 4.7.1'
gem 'timecop'
end