-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
82 lines (68 loc) · 1.34 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
74
75
76
77
78
79
80
81
82
#source 'https://rubygems.org'
source 'http://ruby.taobao.org'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'rails', '3.2.8'
# Javascript library
gem 'jquery-rails'
# Database
# gem 'pg'
gem 'sqlite3'
# Javascript engine
gem 'execjs'
gem 'therubyracer'
# Omniauth
gem 'omniauth'
gem 'omniauth-github'
# Design Pattern Practice
# gem 'cells'
# gem 'draper'
# File Uploads
# gem 'paperclip'
# gem 'carrierwave'
# gem 'mini_magick'
# Paginator
# gem 'kaminari'
# gem 'will_paginate'
# Form tool
# gem "simple_form"
# Authentication
gem "bcrypt-ruby", :require => "bcrypt"
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'bootstrap-sass'
end
group :development, :test do
gem 'quiet_assets'
gem 'sqlite3'
gem 'thin'
gem 'pry'
gem 'ffaker'
gem "spork"
gem 'spork-rails'
gem "rspec-rails"
gem 'rspec-cells'
gem 'factory_girl_rails'
gem 'capybara'
gem 'capybara-webkit'
gem "guard-spork"
gem 'guard-livereload'
gem 'guard-rspec'
gem 'guard-rails'
gem "guard-bundler"
end
group :test do
if RUBY_PLATFORM =~ /linux/
gem 'rb-inotify'
gem 'libnotify'
end
gem 'database_cleaner'
gem 'shoulda-matchers'
gem 'rack_session_access'
# timetracking
# gem 'prickle'
gem 'simplecov', :require => false
gem 'simplecov-rcov', :require => false
end