-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
61 lines (42 loc) · 1.32 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
source 'http://rubygems.org'
gem 'rails', '3.1.0.rc4'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
platforms :ruby do
gem 'sqlite3'
end
platforms :jruby do
# the javascript engine for execjs gem
gem 'therubyrhino'
gem 'activerecord-jdbc-adapter'
# As rails --database switch does not support derby, hsqldb, h2 nor mssql
# as valid values, if you are not using SQLite, comment out the SQLite gem
# below and uncomment the gem declaration for the adapter you are using.
# If you are using oracle, db2, sybase, informix or prefer to use the plain
# JDBC adapter, comment out all the adapter gems below.
# SQLite JDBC adapter
gem 'jdbc-sqlite3', :require => false
# Derby JDBC adapter
#gem 'activerecord-jdbcderby-adapter'
# HSQL JDBC adapter
#gem 'activerecord-jdbchsqldb-adapter'
# H2 JDBC adapter
#gem 'activerecord-jdbch2-adapter'
# SQL Server JDBC adapter
#gem 'activerecord-jdbcmssql-adapter'
end
# Asset template engines
gem 'sass-rails', "~> 3.1.0.rc"
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn', :require => false
end