forked from eadz/typus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
64 lines (46 loc) · 1.17 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
62
63
64
source "http://rubygems.org"
# Specify your gem's dependencies in typus.gemspec
gemspec
# Yes, some dependencies are in typus.gemspec, but it's a little bit difficult
# to mantain the above code there. I'll keep here for the moment ...
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-context'
gem 'mocha' # Make sure mocha is loaded at the end ...
end
group :development, :test do
platforms :jruby do
gem 'activerecord-jdbc-adapter', :require => false
gem 'jdbc-mysql'
gem 'jdbc-postgres'
gem 'jdbc-sqlite3'
gem 'jruby-openssl' # JRuby limited openssl loaded. http://jruby.org/openssl
end
platforms :ruby do
gem 'mysql2', '0.2.7'
gem 'pg'
gem 'sqlite3'
end
end
# MongoDB support is still in "beta" mode, so I'm not testing it for the moment.
group :production do
gem 'mongoid'
platforms :ruby do
gem 'bson_ext'
end
end
group :production do
platforms :jruby do
gem 'activerecord-jdbc-adapter'
gem 'jdbc-sqlite3'
end
platforms :ruby do
gem 'sqlite3'
end
end