-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (44 loc) · 1.12 KB
/
Gemfile
File metadata and controls
59 lines (44 loc) · 1.12 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
source 'https://rubygems.org'
ruby '2.6.3'
gem 'rails', '4.2.6'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# for Heroku deployment - as described in Ap. A of ELLS book
group :development, :test do
gem 'sqlite3'
gem 'byebug'
gem 'database_cleaner'
gem 'capybara'
gem 'launchy'
gem 'rspec-rails'
end
group :test do
gem 'rspec-rails'
gem 'cucumber-rails', :require => false
gem 'cucumber-rails-training-wheels'# :require => false
gem 'simplecov', :require => false
gem 'rack_session_access'
end
group :production do
gem 'pg' # for Heroku deployment
gem 'rails_12factor'
end
# Gems used only for assets and not required
# in production environments by default.
#gem 'therubyracer', '~> 0.12.0'
gem 'sass-rails', '~> 5.0.3'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 2.7.1'
gem 'jquery-rails'
gem 'haml'
gem 'protected_attributes'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'autoprefixer-rails'
gem 'less-rails'
gem 'therubyracer'
gem 'turbolinks'
gem 'omniauth-twitter'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'