-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
74 lines (61 loc) · 2.3 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
source 'http://rubygems.org'
ruby '2.0.0'
gem 'rails', github: 'marnen/rails', branch: 'backport-13321-to-4.0' # TODO: waiting for https://github.com/rails/rails/pull/18442
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19', :require => 'ruby-debug'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
gem 'haml'
gem 'prototype-rails' # TODO: remove when we switch to jQuery.
gem 'pg'
gem 'gettext_i18n_rails'
gem 'iconv'
gem 'prawn'
gem 'prawn-rails', '~> 0.1.1'
gem 'geocoder', '~> 1.1.8'
gem 'rdiscount'
gem 'activerecord-postgis-adapter'
gem 'acts_as_addressed', path: './acts_as_addressed'
gem 'authlogic', github: 'marnen/authlogic', branch: 'backport-pull-369-onto-v3.3.0' # TODO: waiting for https://github.com/binarylogic/authlogic/pull/446
gem 'dynamic_form'
gem 'exception_notification'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier', '>= 1.0.3'
gem 'sprockets-rails', require: 'sprockets/railtie'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end
group :development do
gem 'capistrano', '~> 3.1', require: false
gem 'capistrano-rails', '~> 1.1', require: false
gem 'capistrano-passenger', require: false
gem 'capistrano-rvm', require: false
gem 'gettext', '>= 1.9.3', require: false
end
group :test, :development do
gem 'autotest-rails', :require => false
gem 'rspec-rails', '~> 2.13.1', :require => false
gem 'test-unit', '1.2.3', :require => false # amazingly, RSpec needs this
gem 'byebug'
gem 'cucumber-rails', :require => false
gem 'capybara', '>= 1.0.1', '< 2' # TODO: temporary only, to get Cucumber working. We should remove this line and rewrite for Capybara 2.
gem 'launchy'
gem 'pickle', github: 'ianwhite/pickle', ref: 'd2e4bb87f9ea218b763c9375b29fe75363c4b3c4' # TODO: waiting for https://github.com/ianwhite/pickle/pull/48
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'ffaker'
end