forked from bjorntrondsen/rails_exception_handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (26 loc) · 640 Bytes
/
Copy pathGemfile
File metadata and controls
34 lines (26 loc) · 640 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
source "http://rubygems.org"
ruby File.read(".ruby-version").strip
group :test, :development do
#gem "rails", '3.0.20'
#gem "rack-test", '0.5.7'
#gem 'mongoid'
#gem 'bson_ext'
#gem "rails", '3.2.22.5'
#gem "rack-test", '0.6.2'
#gem 'mongoid'
#gem "rails", '4.0.13'
#gem "rack-test", '0.6.3'
#gem 'mongoid'
#gem "rails", '4.2.8'
#gem "rack-test", '0.6.3'
#gem 'mongoid'
gem "rails", '5.1.1'
gem "rack-test", '0.6.3'
gem 'mongoid'
gem 'rake' # Needed by tavis
gem 'sqlite3'
gem 'pry'
gem "rspec-rails", "3.6.0"
gem "jeweler"
gem "rails_exception_handler", :path => '.'
end