-
-
Notifications
You must be signed in to change notification settings - Fork 419
/
Copy pathGemfile
38 lines (35 loc) · 805 Bytes
/
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
source 'https://rubygems.org'
gemspec name: 'flipper'
Dir['flipper-*.gemspec'].each do |gemspec|
plugin = gemspec.scan(/flipper-(.*)\.gemspec/).flatten.first
gemspec(name: "flipper-#{plugin}", development_group: plugin)
end
gem 'debug'
gem 'rake'
gem 'statsd-ruby', '~> 1.2.1'
gem 'rspec', '~> 3.0'
gem 'rack-test'
gem 'rackup', '= 1.0.0'
gem 'sqlite3', "~> #{ENV['SQLITE3_VERSION'] || '2.1.0'}"
gem 'rails', "~> #{ENV['RAILS_VERSION'] || '8.0'}"
gem 'minitest', '~> 5.18'
gem 'minitest-documentation'
gem 'pstore'
gem 'webmock'
gem 'ice_age'
gem 'redis-namespace'
gem 'webrick'
gem 'stackprof'
gem 'benchmark-ips'
gem 'stackprof-webnav'
gem 'flamegraph'
gem 'mysql2'
gem 'pg'
gem 'cuprite'
gem 'puma'
group(:guard) do
gem 'guard'
gem 'guard-rspec'
gem 'guard-bundler'
gem 'rb-fsevent'
end