forked from cmatiello/pet-ap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (39 loc) · 1.05 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'bootstrap', '~> 4.3.1'
gem 'coffee-rails', '~> 4.2'
gem 'coffee-script-source', '1.8.0'
gem 'jbuilder', '~> 2.5'
gem 'jquery_mask_rails', '~> 0.1.0'
gem 'jquery-rails', '~> 4.3.3'
gem 'puma', '~> 3.7'
gem 'rails', '~> 5.2.3'
gem 'sassc'
gem 'sassc-rails'
gem 'sqlite3', '~> 1.3.7'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'awesome_print'
gem 'better_errors'
gem 'binding_of_callers'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 2.13'
gem 'factory_bot_rails'
gem 'faker'
gem 'pry-byebug'
gem 'pry-rails'
gem 'pry'
gem 'selenium-webdriver'
end
group :development do
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'minitest-rails-capybara'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]