-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (37 loc) · 681 Bytes
/
Copy pathGemfile
File metadata and controls
46 lines (37 loc) · 681 Bytes
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
source 'https://rubygems.org'
gem 'rails', '3.2.5'
gem 'i18n_generators'
# Model
#gem 'sqlite3', group: :development
gem 'pg'
# View
gem 'slim-rails'
gem 'jquery-rails', "2.0.1"
gem 'spinjs-rails'
gem 'active_decorator'
# Assets
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
# Heroku
group :production do
gem 'pg'
gem 'therubyracer-heroku', '0.8.1.pre3'
end
# Tools
group :development do
gem 'pry-rails'
gem "rails-erd"
end
group :development, :test do
gem 'awesome_print'
gem 'tapp'
end
# Testing
group :test do
gem 'test-unit', '>= 2'
gem 'shoulda-context'
gem 'spork-testunit'
end