-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathGemfile
39 lines (33 loc) · 894 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
source 'http://rubygems.org'
gemspec
# Gems used only for assets and not required
# in production environments by default.
gem 'jquery-ui-rails'
#gem 'paper_trail'
group :development do
# Use combustion for testing the engine
gem 'combustion', '0.3.1'
end
group :development, :test do
gem 'selenium-webdriver'
gem 'pry'
end
platforms :jruby do
gem 'activerecord-jdbcpostgresql-adapter'
gem 'activerecord-jdbcmysql-adapter'
gem 'jruby-openssl'
gem 'trinidad'
end
platforms :ruby do
gem 'pg'
gem 'mysql2'
end
#gem 'actionpack-action_caching', '~>1.0.0'
#gem 'actionpack-page_caching', '~>1.0.0'
#gem 'actionpack-xml_parser', '~>1.0.0'
#gem 'actionview-encoded_mail_to', '~>1.0.4'
#gem 'activerecord-session_store', '~>0.0.1'
#gem 'activeresource', '~>4.0.0.beta1'
#gem 'protected_attributes', '~>1.0.1'
#gem 'rails-observers', '~>0.1.1'
#gem 'rails-perftest', '~>0.0.2'