-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
63 lines (49 loc) · 1.23 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
source 'http://rubygems.org'
gem 'rails', '3.0.7'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
# Use unicorn as the web server
gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
#gem "jammit"
#API and Libraries
gem 'rMeetup'
#Authentication Gems
gem "devise"
#Controller Gems
gem 'inherited_resources', '~> 1.2.1'
#Model Gems
gem "friendly_id", "~> 3.2.1"
#Presentation Gems
gem "haml-rails"
gem "jquery-rails"
gem 'crumble', :require => "breadcrumb"
gem 'will_paginate', '3.0.pre2' #Pagination
gem 'compass'
gem 'aasm'
gem 'simple_form'
#Fixes stylesheet caching issue with scss and Heroku
group :production do
gem 'hassle', :git => 'git://github.com/Papipo/hassle.git'
end
#Development Gems
group :development do
gem 'annotate-models', '1.0.4'
gem 'hpricot'
gem 'ruby_parser'
end
#Testing Gems
group :development, :test do
gem "ZenTest", "~> 4.4.2"
gem "autotest-rails", "~> 4.1.0"
gem 'rspec-rails', '~>2.5'
gem 'capybara'
gem 'faker', '~>0.3.1'
gem 'factory_girl_rails', '>=1.0'
gem "cucumber-rails", ">= 0.3.2"
gem "shoulda-matchers"
gem "database_cleaner", "0.6.7.RC"
gem 'spork', '0.9.0.rc5'
end