-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
22 lines (19 loc) · 873 Bytes
/
Copy pathGemfile
File metadata and controls
22 lines (19 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
source 'https://rubygems.org'
gemspec
# JS engines: both installed in dev so the spec suite exercises both
# (CSIM_JS_ENGINE=v8 / =quickjs). Downstream apps add whichever one
# they want — neither is a hard dependency of the gem itself.
gem 'rusty_racer', '~> 0.1.2'
gem 'nokogiri'
gem 'quickjs', '>= 0.18'
group :development, :test do
gem 'launchy' # required by Capybara's shared save_and_open_page spec
gem 'puma' # for Capybara's :server tests (also used by spec helper)
gem 'rack-test'
gem 'rake', require: false
gem 'rspec', '~> 3.13'
gem 'ruby-vips' # canvas/image-decode backend; soft-required at runtime
gem 'selenium-webdriver' # bench/run.rb under :selenium
gem 'stackprof', require: false # sampling profiler for perf investigations
gem 'sinatra', '>= 4.0'
end