-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
61 lines (51 loc) · 2.07 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
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
ruby '2.5.1'
gem 'rails', '~> 5.1.4'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'figaro' , '~> 1.1'
gem 'unsplash', '~> 1.5', '>= 1.5.1'
gem 'inline_svg', '~> 1.3'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Bootstrap.
gem 'bootstrap', '~> 4.1', '>= 4.1.3'
gem 'jquery-rails', '4.3.1'
group :development, :test do
gem 'guard', '~> 2.14', '>= 2.14.1'
gem 'guard-livereload', '~> 2.5', '>= 2.5.2'
gem 'guard-rspec', '~> 4.7', '>= 4.7.3'
gem 'rspec-rails', '~> 3.7'
gem 'shoulda-matchers', '~> 3.1', '>= 3.1.2'
gem 'rails-controller-testing', '~> 1.0', '>= 1.0.2'
gem 'factory_girl_rails', '~> 4.8'
gem 'capybara', '~> 2.17'
gem 'pry', '~> 0.11.2'
gem 'pry-byebug', '~> 3.5'
gem 'pry-rails', '~> 0.3.6'
gem 'rubocop-rails', '~> 1.1'
gem 'simplecov', :require => false
gem 'vcr', '~> 3.0', '>= 3.0.3'
gem 'webmock', '~> 3.1'
# Security.
gem 'brakeman', :require => false
gem 'bundler-audit', :require => false
end
group :development do
gem 'better_errors', '~> 2.4'
gem 'binding_of_caller', '~> 0.7.3'
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]