-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (43 loc) · 1002 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
50
source 'http://rubygems.org'
gem 'rails'
gem 'mysql2', '< 0.3'
gem 'jquery-rails'
gem 'devise'
gem 'cancan'
gem "friendly_id"
gem "paperclip"
gem "meta_where"
gem 'foreigner'
gem 'active_link_to'
gem 'paper_trail'
gem 'client_side_validations'
gem 'kaminari'
# For processing text
gem 'rdiscount'
gem 'RedCloth'
# Deploy with Capistrano
gem 'capistrano'
# For bookmarking
gem 'acts_as_favable'
# For encrypting entity rows
# Fetching from github for Ruby 1.9 compatibility
gem 'attr_encrypted', :git => 'git://github.com/shuber/attr_encrypted.git'
group :development, :test, :demo do
gem 'cover_me'
gem 'web-app-theme'
gem 'autotest'
gem 'factory_girl_rails'
gem 'cucumber'
gem 'cucumber-rails'
gem 'capybara'
gem 'culerity'
gem 'celerity', :require => nil # JRuby only. Make it available but don't require it in any environment.
gem 'pickle'
gem 'database_cleaner'
gem 'rspec'
gem 'rspec-rails'
gem 'launchy'
gem 'slowgrowl'
gem 'ffaker'
gem 'switch_user'
end