-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
66 lines (51 loc) · 1.36 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
source "https://rubygems.org"
ruby "2.3.3"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem "puma", "~> 3.7"
gem "rails", "~> 5.1.1"
gem "pg"
gem "coffee-rails", "~> 4.2"
gem "sass-rails", "~> 5.0"
gem "uglifier", ">= 1.3.0"
gem "webpacker"
group :development, :test do
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "pry-rails"
gem "capybara", "~> 2.13"
gem "selenium-webdriver"
gem "factory_girl_rails"
gem "faker"
gem "figaro"
end
group :test do
gem "database_cleaner"
gem "rspec-rails"
gem "shoulda-matchers", git: "https://github.com/thoughtbot/shoulda-matchers.git", branch: "rails-5"
gem "simplecov"
end
group :development do
gem "annotate"
gem "graphiql-rails"
gem "listen", ">= 3.0.5", "< 3.2"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
gem "guard", require: false
gem "guard-bundler", require: false
gem "guard-rspec", require: false
gem "rubocop", require: false
end
group :development, :tddium_ignore, :darwin do
gem "terminal-notifier-guard", require: false # OSX-specific notifications for guard
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "carrierwave"
gem "devise"
gem "fog"
gem "graphql"
gem "jwt"
gem "kaminari"
gem "mini_magick"