-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGemfile
50 lines (45 loc) · 1.1 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "awesome_print"
gem "bootsnap", require: false
gem "date_by_example"
gem "devise"
gem "jbuilder"
gem "puma"
gem "rails"
gem "simple_form"
gem "sqlite3"
gem "table_print"
gem "turbolinks"
gem "webpacker"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "faker"
gem "pry-rails"
gem "pry-rescue"
gem "rspec-rails", "~> 4.0.0.beta2"
gem "rubocop"
gem "rubocop-performance"
gem "rubocop-rails"
end
group :development do
gem "annotate"
gem "erb_lint", require: false
gem "htmlbeautifier"
gem "listen"
gem "spring"
gem "spring-commands-rspec"
gem "spring-watcher-listen"
gem "web-console"
end
group :test do
gem "capybara"
gem "capybara-screenshot"
gem "factory_bot_rails"
gem "fuubar"
gem "selenium-webdriver"
gem "test-prof"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]