-
-
Notifications
You must be signed in to change notification settings - Fork 498
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (37 loc) · 905 Bytes
/
Gemfile
File metadata and controls
45 lines (37 loc) · 905 Bytes
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
source 'https://rubygems.org/'
gemspec
gem 'logger', '~> 1.7'
gem 'ostruct', '~> 0.6'
gem 'minitest', '~> 5.15'
gem 'rake', '~> 13.3'
gem 'kramdown', '~> 2.5'
if ENV['TEMPLE'] && ENV['TEMPLE'] != 'master'
gem 'temple', "= #{ENV['TEMPLE']}"
else
# Test against temple master by default
gem 'temple', github: 'judofyr/temple'
end
if ENV['TILT']
if ENV['TILT'] == 'master'
gem 'tilt', github: 'jeremyevans/tilt'
else
gem 'tilt', "= #{ENV['TILT']}"
end
end
if ENV['RAILS']
gem 'rails-controller-testing'
# we need some smarter test logic for the different Rails versions
if ENV['RAILS'] == 'main'
gem 'rails', github: 'rails/rails', branch: 'main'
else
gem 'rails', "= #{ENV['RAILS']}"
end
end
if ENV['SINATRA']
gem 'rack-test'
if ENV['SINATRA'] == 'main'
gem 'sinatra', github: 'sinatra/sinatra'
else
gem 'sinatra', "= #{ENV['SINATRA']}"
end
end