-
Notifications
You must be signed in to change notification settings - Fork 102
/
Gemfile
65 lines (51 loc) · 1.22 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
source 'http://rubygems.org'
#ruby=1.9.3-p448
#ruby-gemset=hackety-hack.com
ruby '1.9.3'
gem 'rails', '3.2.17'
gem 'json'
gem 'hackety_hack-lessons', '~> 1.1', :require => 'hackety_hack/lessons'
gem 'haml-rails'
gem 'jquery-rails'
gem 'mongo_mapper'
gem 'bson_ext'
gem "letter_opener", group: :development
gem "devise", "~> 2.2.2"
gem 'mm-devise', '~> 2.0'
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 'redcarpet', '~> 3.0' # Markdown
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
group :development do
# Use unicorn as the web server
gem 'unicorn'
end
group :development, :test do
gem 'debugger'
gem 'fabrication'
gem 'rspec-rails'
gem 'capybara'
gem 'cucumber-rails', require: false
gem "faker"
gem 'pry'
gem 'sqlite3'
end
group :production do
gem 'pg' # ugh heroku
end
group :test do
gem "simplecov", :require => false
gem "coveralls"
gem "mocha"
gem "database_cleaner"
gem "launchy"
end