forked from thoughtbot/suspenders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile.erb
49 lines (41 loc) · 961 Bytes
/
Gemfile.erb
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
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 "<%= Suspenders::RUBY_VERSION %>"
<% if options[:api] %>
gem "sprockets", "< 4"
<% end %>
gem "bootsnap", require: false
gem "cssbundling-rails"
gem "honeybadger"
gem "jsbundling-rails"
gem "pg"
gem "puma"
gem "rack-canonical-host"
gem "rails", "<%= Suspenders::RAILS_VERSION %>"
gem "recipient_interceptor"
gem "sassc-rails"
gem "skylight"
gem "sprockets-rails"
gem "stimulus-rails"
gem "title"
gem "turbo-rails"
gem "tzinfo-data", platforms: [:mingw, :x64_mingw, :mswin, :jruby]
group :development do
gem "listen"
gem "web-console"
end
group :development, :test do
gem "awesome_print"
gem "pry-byebug"
gem "pry-rails"
end
group :test do
gem "formulaic"
gem "launchy"
gem "timecop"
gem "webmock"
end
gem "suspenders", group: [:development, :test]