forked from robkooper/bety
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
81 lines (64 loc) · 1.94 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
source "http://rubygems.org"
gem "rails", "3.2.21"
gem "prototype-rails" # needed for rails 3.1 and above until we phase out prototype
gem "query_reviewer", "0.1.6"
gem "nokogiri"
gem "narray", "0.6.0.4"
gem "choice", "0.1.6"
gem "comma", "3.0.4"
gem "json", "1.5.5"
gem "multi_json", "1.3.6"
gem "railroad", "0.5.0"
gem "recaptcha", "0.3.4", :require => "recaptcha/rails"
gem "ruby-graphviz", "1.0.8"
gem "safe_attributes"
gem "seer", "0.10.0"
gem "tzinfo", "0.3.35"
gem "will_paginate", "3.0.4"
gem "bootstrap-will_paginate"
gem 'rails3-restful-authentication', '~> 3.0.1'
gem 'dynamic_form'
# to-do: remove prototype dependencies so we no longer need this gem
gem 'prototype_legacy_helper', '0.0.0', :git => 'git://github.com/rails/prototype_legacy_helper.git'
gem 'memoist'
# MySQL, comment out PostgreSQL section
#gem "mysql2"
#gem "ruby-mysql" # for data upload scripts in local
#gem "activerecord-mysql2-adapter"
# Postgresql, comment out MySQL section
gem "pg"
gem "activerecord-postgis-adapter"
gem "trollop" # for Rails scripts
group :development, :test do
# Although rspec-rails is mainly for the test environment, we
# include it in development in case we want to have access to
# RSpec-specific generators.
gem "rspec-rails"
# Don't think we need this:
# gem "sqlite3", "1.3.3"
end
group :test do
# phasing out webrat:
# gem "webrat", "0.7.1"
gem "capybara"
gem "database_cleaner"
end
# If you have difficulty installing or don't wish to install capybara-webkit,
# run bundle install with the "--without javascript_testing" option:
#
# bundle install --without javascript_testing
#
group :javascript_testing do
gem "capybara-webkit"
end
# This group is used by RSpec if the environment variable RAILS_DEBUG is set to
# "true":
group :debug do
gem "selenium-webdriver"
gem "pry"
end
# Comment this out if you can't or don't wish to install capybara-webkit:
group :production do
# gem "rmagick", "2.13.1"
gem "passenger"
end