-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (50 loc) · 2.12 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
47
48
49
50
51
52
53
54
55
56
source 'https://rubygems.org'
ruby '2.4.0'
gem 'rails', '>= 5.0.0.rc2', '< 5.1'
gem 'pg', '~> 0.18'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '>= 4.1.1', '< 5'
gem 'jquery-rails', '>= 4'
gem 'turbolinks', '~> 2.4.0'
gem 'jquery-turbolinks', '~> 2.1.0'
gem 'jbuilder', '~> 2.0'
gem 'twitter-bootstrap-rails', '~> 3.2.0'
gem 'will_paginate-bootstrap', '~> 1.0.1'
gem 'jquery-ui-rails', '~> 5.0.2'
gem 'simple_form', '>= 4', '< 5'
gem 'ransack'
gem 'friendly_id', '~> 5.0.0'
gem 'devise', '>= 4', '< 4.1.0'
gem 'factory_girl_rails', '~> 4.5.0'
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.14.30'
gem 'less-rails'
gem 'less-rails-bootstrap'
gem 'therubyracer', '~> 0.12.1' # https://github.com/cowboyd/therubyracer
gem 'carrierwave', '~> 1.0'
gem 'fog-aws', '~> 1.3.0'
gem 'mini_magick', '~> 4.8.0'
gem 'sprockets', '3.6.3'
group :development do
gem 'spring', '~> 1.1.3' # Speeds up application. Read more: https://github.com/rails/spring
gem 'awesome_print', '~> 1.2.0' # https://github.com/michaeldv/awesome_print
end
group :development, :test do
gem 'pry', '~> 0.10.1' # Pry = win
gem 'pry-byebug', '~> 2.0.0' # Adds step, next and etc to pry
gem 'rspec-rails', '~> 3.5.0' # http://rspec.info
gem 'capybara', '~> 2.5' # https://github.com/jnicklas/capybara
gem 'capybara-webkit', '~> 1.5' # https://github.com/thoughtbot/capybara-webkit
gem 'shoulda-matchers', require: false # https://github.com/thoughtbot/shoulda
gem 'launchy', '~> 2.4.2' # https://github.com/copiousfreetime/launchy
gem 'dotenv-rails', '~> 2.2.1' # https://github.com/bkeepers/dotenv
end
group :development, :test, :staging do
gem 'faker', '~> 1.4.3' # http://faker.rubyforge.org/
gem 'database_cleaner', '~> 1.3.0' # https://github.com/DatabaseCleaner/database_cleaner
gem 'rspec-its', '~> 1.0.1' # https://github.com/rspec/rspec-its
end
group :production do
gem 'unicorn', '~> 4.8.3' # use unicorn as the app server
gem 'rails_12factor', '~> 0.0.3' # https://github.com/heroku/rails_12factor
end