-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (31 loc) · 728 Bytes
/
Gemfile
File metadata and controls
37 lines (31 loc) · 728 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
source 'https://rubygems.org'
gemspec
group :development do
gem 'rake', '~> 13'
gem 'standard', '~> 1.21'
gem 'webrick', '~> 1.7'
end
group :test do
rack_version = ENV.fetch('RACK_VERSION', '3')
gem 'rack', "~> #{rack_version}"
gem 'rackup' if rack_version == '3'
gem 'rack-test', '~> 2'
gem 'rspec', '~> 3.0', '>= 3.6.0'
gem 'rspec-its', '~> 1.2'
gem 'websocket_parser', '~> 1.0'
end
group :docs do
gem 'redcarpet', '~> 3.4', platform: :ruby
gem 'yard', '~> 0.9'
end
platforms :jruby do
gem 'jruby-openssl'
end
if RUBY_VERSION >= '3.4'
gem 'mutex_m' # TODO: remove this once as-notifications has such a dependency
end
if RUBY_VERSION >= '4.0'
gem 'logger'
gem 'ostruct'
gem 'pstore'
end