-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (40 loc) · 1017 Bytes
/
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
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 "bootsnap"
gem "puma"
gem "rails", "5.2.0rc1"
gem "sass-rails", github: "rails/sass-rails"
gem "sqlite3"
gem "coffee-rails"
gem "jbuilder"
gem "turbolinks"
gem "uglifier"
gem "capistrano-rails", group: :development
gem "awesome_print"
gem "webpacker"
group :development, :test do
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "capybara"
gem "pry-rails"
gem "pry-rescue"
gem "rspec-rails"
gem "rubocop"
gem "selenium-webdriver"
gem "rspec_junit_formatter"
gem 'factory_bot_rails'
end
group :test do
gem "database_cleaner"
end
group :development do
gem "listen"
gem "spring"
gem "spring-commands-rspec"
gem "spring-watcher-listen"
gem "web-console"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]