forked from uservidya/oboe-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
36 lines (30 loc) · 833 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
source 'https://rubygems.org'
group :development, :test do
gem 'minitest'
gem 'minitest-reporters'
gem 'rack-test'
gem 'appraisal'
gem 'bson'
end
group :development do
gem 'ruby-debug', :platform => :mri_18
gem 'ruby-debug19', :platform => :mri_19, :require => 'ruby-debug'
gem 'byebug', :platform => :mri_20
gem 'perftools.rb', :platform => :mri, :require => 'perftools'
gem 'pry'
end
# Instrumented gems
gem 'dalli'
gem 'memcache-client'
gem 'memcached' if (RUBY_VERSION =~ /^1./) == 0
gem 'cassandra'
gem 'mongo'
gem 'bson_ext' # For Mongo, Yours Truly
gem 'moped' unless (RUBY_VERSION =~ /^1.8/) == 0
gem 'resque'
gem 'redis'
# Instrumented Frameworks
gem 'sinatra'
gem 'padrino', '0.12.0' unless (RUBY_VERSION =~ /^1.8/) == 0
# Import dependencies from oboe.gemspec
gemspec :name => 'oboe'