forked from eadz/typus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (37 loc) · 876 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
source 'http://rubygems.org'
gemspec
gem 'acts_as_list'
gem 'acts_as_tree'
gem 'dragonfly', '~>0.8.1'
gem 'factory_girl'
gem 'paperclip'
gem 'rack-cache', :require => 'rack/cache'
gem 'rails', '~> 3.0'
group :test do
gem 'shoulda'
gem 'tartare', :git => 'https://github.com/fesplugas/rails-tartare.git', :require => false
gem 'mocha'
end
group :development, :test do
platforms :jruby do
gem 'activerecord-jdbc-adapter', :require => false
# gem 'activerecord-jdbcpostgresql-adapter'
gem 'jdbc-mysql'
gem 'jdbc-postgres'
gem 'jdbc-sqlite3'
end
platforms :ruby do
gem 'mysql2'
gem 'pg'
gem 'sqlite3-ruby', :require => 'sqlite3'
end
end
group :production do
platforms :jruby do
gem 'activerecord-jdbc-adapter'
gem 'jdbc-sqlite3'
end
platforms :ruby do
gem 'sqlite3-ruby', :require => 'sqlite3'
end
end