-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
62 lines (48 loc) · 895 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
51
52
53
54
55
56
57
58
59
60
61
62
source 'http://rubygems.org'
gem 'rails'
# HAML/SASS
gem 'haml'
gem 'compass', "~>0.11"
gem 'html5-boilerplate'
# Markdown
gem 'rdiscount'
# Access control
gem 'cancan'
# OAuth, FB connect, etc
gem 'devise'
gem 'omniauth'
# Semantic forms
gem 'formtastic'
# Better than instance vars
gem 'decent_exposure'
# Versioning
gem 'paper_trail'
# Image attachment
gem 'paperclip'
# ActiveRecord search
gem "meta_where"
gem "meta_search"
group :cucumber do
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'spork'
gem 'launchy'
end
group :development, :test do
gem 'webrat'
gem 'sqlite3'
gem 'nifty-generators'
gem 'rspec'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'launchy'
gem 'guard-rspec'
gem 'growl'
end
group :production do
gem 'mysql'
gem 'mysql2', :require => 'mysql'
end
gem "mocha", :group => :test