-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (37 loc) · 1.13 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
source 'https://rubygems.org'
# 12-9-16:
ruby '2.3.1'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'sqlite3'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# 11-26-16:
gem 'better_errors', '~> 2.1', '>= 2.1.1'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# 11-28-16:
gem 'devise', '~> 4.2'
# 11-26-16:
gem 'cocoon', '~> 1.2', '>= 1.2.9'
gem 'paperclip', '~> 5.1'
gem 'bootstrap-sass', '~> 3.3.6'
# 11-25-16:
# gem 'bootstrap', '~> 4.0.0.alpha5' expect too many differences to loose time on it here
gem 'simple_form', '~> 3.2', '>= 3.2.1'
gem "haml-rails", "~> 0.9"