-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
73 lines (58 loc) · 1.18 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
source 'http://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.13'
# # Even it's shipped with rails, ensure we get latest security fix
gem "json", ">=1.7.7"
# users authentication
gem 'devise', '~>2.1.3'
# users authorization
gem 'cancan'
# adimn panel
gem 'activeadmin'
# models annotations
gem 'annotator'
# live web notifications
gem 'pusher'
# test runner
gem 'open4'
# DB
gem 'sqlite3'
gem 'pg'
# UI
gem 'coffee-rails'
gem 'jquery-rails'
gem 'sass-rails'
gem "haml-rails"
gem 'gravtastic' # avatars from gravatar
gem 'kaminari' # pagination
gem 'kaminari-bootstrap' # bootstrap theme for kaminari
gem 'friendly_id'
gem "twitter-bootstrap-rails"
# VCS
gem 'git'
# notifications
gem 'tinder'
group :production do
# Unicorn
gem 'unicorn'
end
# test suite
group :development, :test do
gem 'capistrano'
gem 'capistrano-helpers'
gem 'capistrano-ext'
gem 'rvm-capistrano'
gem 'capybara'
gem 'factory_girl_rails'
gem 'faker'
gem 'rspec-rails'
gem 'rspec-mocks'
gem 'shoulda-matchers'
gem 'sql_queries_count'
gem 'ZenTest'
gem 'debugger'
end
group :test do
# Code coverage for Ruby 1.9 https://github.com/colszowka/simplecov
gem 'simplecov', :require => false
end