forked from hacketyhack/hackety-hack.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
57 lines (44 loc) · 1.11 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
source 'http://rubygems.org'
gem 'rails', '3.1.0'
gem 'json'
gem 'hackety_hack-lessons', '~> 1.1', :require => 'hackety_hack/lessons'
gem 'haml-rails'
gem 'jquery-rails'
gem 'mongo_mapper'
gem 'bson_ext'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
gem 'jnunemaker-validatable', '>= 1.8.4' # Required by mm-devise
gem 'devise', '>= 1.2'
gem 'mm-devise', '>= 1.2'
gem 'cancan'
gem 'inherited_resources'
gem 'simple_form', :git => "https://github.com/bitzesty/bootstrap_form.git"
gem "semantic_menu", :git => "git://github.com/michaek/semantic_menu.git"
gem 'will_paginate' # Pagination
gem 'rdiscount' # Markdown
group :development do
# Use unicorn as the web server
gem 'unicorn'
end
group :development, :test do
gem 'fabrication'
gem 'rspec-rails'
gem 'cucumber-rails'
gem "faker"
gem 'pry'
gem 'sqlite3'
end
group :production do
gem 'pg' # ugh heroku
end
group :test do
gem "mocha"
gem "database_cleaner"
gem "launchy"
end