-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
113 lines (85 loc) · 1.58 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Settings
# ========
source 'http://rubygems.org'
# Rails
# =====
gem 'rails', '~> 3.0.0'
gem 'rack', '1.2.1'
# Database
gem 'mysql2', '~> 0.2.7'
# Development
# ===========
group :development do
# Haml generators
gem 'hpricot'
gem 'ruby_parser'
# Deployment
gem 'capones_recipes'
end
# Test
# ====
group :test do
# Matchers/Helpers
gem 'shoulda'
# Mocking
# gem 'mocha'
# Browser
gem 'capybara'
# Autotest
gem 'autotest'
gem 'autotest-rails'
gem 'ZenTest', '< 4.6.0' # Keep it working with gems < 1.8
end
group :test, :development do
# Framework
gem "rspec"
gem 'rspec-rails'
# Fixtures
gem "factory_girl_rails", "~> 1.1.rc1"
gem "factory_girl", "~> 2.0.0.rc1"
# Integration
# gem 'cucumber-rails'
# gem 'cucumber'
# Generators
gem 'rails3-generators'
end
# Standard helpers
# ================
gem 'haml'
gem 'haml-rails'
gem 'compass-rails'
gem 'fancy-buttons'
gem 'simple-navigation'
gem 'simple_form'
gem 'lyb_sidebar'
gem 'formtastic'
#gem 'will_paginate', :git => 'git://github.com/huerlisi/will_paginate.git', :branch => 'rails3'
gem 'inherited_resources', '1.2.2'
gem 'has_scope'
gem 'i18n_rails_helpers'
gem 'jquery-rails'
gem 'settingslogic'
gem 'routing-filter'
# Access Control
gem 'devise'
gem 'omniauth'
# Twitter
gem 'omniauth-twitter'
# Facebook
gem 'omniauth-facebook'
gem 'koala'
# Generate images
gem 'imgkit'
# Generates qr codes
gem 'rqrcode'
# Monitoring
# ==========
group :production do
# Traffic
gem 'rack-google_analytics'
# Performance
gem 'newrelic_rpm'
# Exceptions
gem 'airbrake'
end
gem "unicorn"