-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
96 lines (84 loc) · 2.59 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.7.5"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
source "https://gems.kiso.io/" do
gem "dresssed-ives", "~> 1.0.67"
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '>= 7.0.0'
gem "rack", ">= 2.0.7"
gem "loofah", ">= 2.2.3"
gem "rubyzip", ">= 1.3.0"
gem "ffi", ">= 1.11.3"
# Use Puma as the app server
gem "puma", ">= 4.3.5"
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '>= 5.0.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.10'
# Use ActiveModel has_secure_password
gem 'will_paginate', '~> 3.1.0'
gem 'bootstrap-datepicker-rails'
gem "sweet-alert", git: "https://github.com/frank184/sweet-alert-rails"
gem "sweet-alert-confirm", git: "https://github.com/humancopy/sweet-alert-rails-confirm"
gem 'acts_as_list'
gem 'jira-ruby', '1.7.0', :require => 'jira-ruby'
gem "devise"
gem 'ruby-trello'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection', '~> 0.1'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'rails-ujs'
gem 'resque'
gem 'business_time'
gem 'webpacker'
gem 'montecasting', '>= 0.6.5'
gem 'binky-builder', '~> 0.5.x'
#DIGITAL OCEAN
gem 'capistrano', '~> 3.11'
gem 'capistrano-rails', '~> 1.4'
gem 'capistrano-passenger', '~> 0.2.0'
gem 'capistrano-rbenv', '~> 2.1', '>= 2.1.4'
group :development, :test do
gem 'sqlite3'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'test-unit'
gem 'mocha'
gem 'factory_bot_rails'
gem 'rspec-rails', '4.0.0.beta2'
gem 'rails-controller-testing'
gem 'faker'
gem 'shoulda-matchers', '~> 3.0', require: false
gem 'database_cleaner', '~> 1.5'
gem 'webmock'
gem 'vcr'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen'
gem 'spring', ">= 1.2","< 3.0"
gem 'spring-watcher-listen'
gem 'awesome_print'
end
group :production do
gem 'pg'
gem 'rails_12factor'
# Use Redis adapter to run Action Cable in production
gem 'redis'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]