-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
46 lines (41 loc) · 1.2 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
source 'https://rubygems.org'
ruby '2.3.0'
gem 'better_errors', '~> 2.1', '>= 2.1.1'
gem 'bootstrap-sass'
gem 'cloudinary'
gem 'coffee-rails', '~> 4.2'
gem 'devise'
gem 'bcrypt', '>= 3.1.16'
gem 'jquery-rails'
gem 'paperclip', '~> 4.3', '>= 4.3.6'
gem 'paperclip-cloudinary'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'rails', '~> 5.0.0.1'
gem 'rails_admin', '>= 1.0.0.rc'
gem 'remotipart', github: 'mshibuya/remotipart'
gem 'sass-rails', '~> 5.0'
gem 'simple_form', '~> 3.2', '>= 3.2.1'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug', platform: :mri
gem 'factory_girl_rails', '~> 4.5'
gem 'ffaker', '~> 2.2'
gem 'pry', '~> 0.10.4'
gem 'rspec-rails', '~> 3.5', '>= 3.5.1'
gem 'simplecov', '~> 0.12.0', :require => false
end
group :test do
gem 'database_cleaner'
gem 'rails-controller-testing'
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'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]