-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
51 lines (44 loc) · 1.83 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
source 'http://rubygems.org'
gem 'rake', "~> 0.9.2"
gem 'rails', "~> 3.0.10"
gem 'thin'
# Database
gem 'sqlite3-ruby', "~> 1.3.3", :group => [:development, :test], :require => 'sqlite3'
# HTML and CSS replacement
gem 'haml', "~> 3.0"
gem 'haml-rails', "~> 0.3.4"
gem 'compass', "~> 0.11.5"
gem 'html5-boilerplate', "~> 1.0.0"
gem 'compass-960-plugin', "~> 0.10.4"
gem 'friendly_id', "~> 3.3.0" # Human readable URLs
gem 'validates_existence', "~> 0.5" # Validation of associations
gem 'chronic', "~> 0.6.1" # Time parsing
gem 'will_paginate', "~> 3.0.0" # Pagination of long lists
gem 'devise', "~> 1.4" # User management
# gem 'hassle', :git => 'git://github.com/koppen/hassle.git'
gem 'dalli'
# group 'test' do
# gem 'rspec', "~> 2.6.0"
# gem 'rspec-rails', "~> 2.6.0"
# gem 'spork', "~> 0.8.5"
# gem 'watchr', "~> 0.7"
# gem 'rcov', "~> 0.9.10"
# gem 'steak', "~> 2.0.0"
# gem 'forgery', "~> 0.4.3"
# gem 'machinist', "~> 1.0.6"
# end
group 'development' do
gem 'nifty-generators', "~> 0.4.6" # Much better scaffolding
gem 'taps', "~> 0.3.23" # Teleportation of databases
# gem 'ruby-debug19', "~> 0.11.6", :platforms => [:ruby_19]
# gem 'ruby-debug', :platforms => [:ruby_18]
gem 'annotate', "~> 2.4.0"
gem 'pry'
gem 'heroku'
end
group 'console' do
gem 'hirb'
gem 'awesome_print'
end
# Plugins (not handled by bundler, just listed here)
# gem 'ajaxful_rating_jquery', :git => 'git://github.com/mrbrdo/ajaxful_rating_jquery.git'