-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
95 lines (84 loc) · 4.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# Full-stack web application framework. (http://rubyonrails.org)
gem 'rails', '~> 5.2.1'
# Use postgresql as the database for Active Record
# Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/] (https://bitbucket.org/ged/ruby-pg)
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
# Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications (http://puma.io)
gem 'puma', '~> 3.7'
# Use SCSS for stylesheets
# Sass adapter for the Rails asset pipeline. (https://github.com/rails/sass-rails)
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
# Ruby wrapper for UglifyJS JavaScript compressor (http://github.com/lautis/uglifier)
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Minimal embedded v8 for Ruby (https://github.com/discourse/mini_racer)
gem 'mini_racer'
# Use CoffeeScript for .coffee assets and views
# CoffeeScript adapter for the Rails asset pipeline. (https://github.com/rails/coffee-rails)
gem 'coffee-rails', '~> 4.2'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
# Turbolinks makes navigating your web application faster (https://github.com/turbolinks/turbolinks)
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# Create JSON structures via a Builder-style DSL (https://github.com/rails/jbuilder)
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
# OpenBSD's bcrypt() password hashing algorithm. (https://github.com/codahale/bcrypt-ruby)
gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# Middleware for enabling Cross-Origin Resource Sharing in Rack apps (https://github.com/cyu/rack-cors)
gem 'rack-cors'
# JSON Web Token implementation in Ruby (http://github.com/jwt/ruby-jwt)
gem 'jwt'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
# Ruby fast debugger - base + CLI (http://github.com/deivid-rodriguez/byebug)
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# Use Pry as your rails console (https://github.com/rweng/pry-rails)
gem 'pry-rails'
# Fast debugging with Pry. (https://github.com/deivid-rodriguez/pry-byebug)
gem 'pry-byebug'
# Walk the stack in a Pry session (https://github.com/pry/pry-stack_explorer)
gem 'pry-stack_explorer'
# The Bullet gem is designed to help you increase your application's performance by reducing the number of queries it makes
# help to kill N+1 queries and unused eager loading. (https://github.com/flyerhzm/bullet)
gem 'bullet'
# Adds support for Capybara system testing and selenium driver
# Capybara aims to simplify the process of integration testing Rack applications, such as Rails, Sinatra or Merb (https://github.com/teamcapybara/capybara)
gem 'capybara', '~> 2.13'
# The next generation developer focused tool for automated testing of webapps (https://github.com/SeleniumHQ/selenium)
gem 'selenium-webdriver'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
# A debugging tool for your Ruby on Rails applications. (https://github.com/rails/web-console)
gem 'web-console', '>= 3.3.0'
# Listen to file modifications (https://github.com/guard/listen)
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
# Rails application preloader (https://github.com/rails/spring)
gem 'spring'
# Makes spring watch files using the listen gem. (https://github.com/jonleighton/spring-watcher-listen)
gem 'spring-watcher-listen', '~> 2.0.0'
# Annotates Rails Models, routes, fixtures, and others based on the database schema. (http://github.com/ctran/annotate_models)
gem 'annotate'
# Add comments to your Gemfile with each dependency's description. (https://github.com/ivantsepp/annotate_gem)
gem 'annotate_gem'
gem 'rails-erd'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# Timezone Data for TZInfo (http://tzinfo.github.io)
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]