This repository has been archived by the owner on Jan 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
67 lines (50 loc) · 1.72 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
source 'http://rubygems.org'
# Version for deploy on server: appweb.labinfo.eiaj.ch
gem 'rails', '3.1.2'
# Database type: MySQL
gem 'mysql2'
# Rails authentication & authorization with email & password
# Link: https://github.com/thoughtbot/clearance
gem 'clearance'
# Generate fake data: names, addresses, phone numbers, etc.
# Link: http://faker.rubyforge.org/
gem 'faker'
# Rails view helper for grabbing Gravatar images
# Link: https://github.com/mdeering/gravatar_image_tag
gem 'gravatar_image_tag', '1.0.0.pre2'
# Pagination library
# Link: https://github.com/mislav/will_paginate/
gem 'will_paginate', '~> 3.0.2'
# Executing commands in parallel on multiple remote machines, via SSH (mainly for deploying applications)
# Link: https://rubygems.org/gems/capistrano
gem 'capistrano'
# Wrapper for the audioscrobbler (last.fm) web services
# Link: http://scrobbler.rubyforge.org/
gem 'scrobbler'
# Swappable JSON backends
# Link: http://rubygems.org/gems/multi_json
#gem 'multi_json', '1.0.4'
# --------------------------------------
# DEFAULT GEMS (automatically generated)
# --------------------------------------
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# Javascript runtime for deployement (precompile assets)
gem 'therubyracer'
# Default gem
gem 'sass-rails', '~> 3.1.4'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
# gem 'turn', :require => false # Apparently tests failed with this gem
end