This repository was archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
68 lines (53 loc) · 1.23 KB
/
Copy pathGemfile
File metadata and controls
68 lines (53 loc) · 1.23 KB
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
source 'https://rubygems.org'
gem 'rails', '3.2.8'
gem 'pg'
gem 'jquery-rails'
gem 'simple_form'
gem 'prawn'
gem 'prawnto_2', :require => 'prawnto'
gem 'twitter-bootstrap-rails'
gem 'carrierwave'
gem 'rmagick'
group :assets do
gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '>= 1.3.0'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# Deploy with Capistrano
gem 'capistrano'
group :development do
gem 'pry-rails'
# Guard
gem 'guard'
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
gem 'rb-fchange', :require => false
gem 'growl'
# Guard plugins
gem 'guard-rspec'
gem 'guard-spork'
gem 'guard-bundler'
gem 'guard-migrate'
gem 'guard-jasmine'
gem 'guard-evergreen'
end
group :development, :test do
gem 'rspec-rails'
# Capybara using headless PhantomJS browser
gem 'capybara'
gem 'poltergeist'
# Factories, not fixtures
gem 'factory_girl_rails'
# Speeds testing by keeping Rails framework running in background
gem 'spork'
# Use Jasminerice for testing Javascript
gem 'jasminerice'
# Database Cleaner resets the database between test runs
gem 'database_cleaner'
end
group :test do
# Growl notifications
gem 'growl'
end