-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGemfile
28 lines (22 loc) · 804 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
source "https://rubygems.org"
# Declare your gem's dependencies in new_relic_ping.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
group :development, :test do
gem "coveralls", :require => false
# gem "pry" # Note: debugger etc don't install on jruby and rubinius
# for CRuby, Rubinius, including Windows and RubyInstaller
gem "sqlite3", :platform => [:ruby, :mswin, :mingw]
# JRuby support
gem "jdbc-sqlite3", :platform => :jruby
gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
# Rubinius support
platforms :rbx do
gem 'racc'
gem 'rubysl', '~> 2.0'
gem 'psych'
end
end
# jquery-rails is used by the dummy application
gem "jquery-rails"