forked from collectiveidea/awesome_nested_set
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (25 loc) · 701 Bytes
/
Copy pathGemfile
File metadata and controls
32 lines (25 loc) · 701 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
gem 'combustion', :github => 'pat/combustion', :branch => 'master'
source 'https://rubygems.org'
gemspec :path => File.expand_path('../', __FILE__)
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.3.0.beta2'
gem 'activerecord-jdbcmysql-adapter', '>= 1.3.0.beta2'
gem 'jdbc-mysql'
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.3.0.beta2'
gem 'jruby-openssl'
end
platforms :ruby do
gem 'sqlite3'
gem 'mysql2', (MYSQL2_VERSION if defined? MYSQL2_VERSION)
gem 'pg'
end
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubysl-test-unit'
end
# Add Oracle Adapters
# gem 'ruby-oci8'
# gem 'activerecord-oracle_enhanced-adapter'
# Debuggers
gem 'pry'
gem 'pry-nav'