forked from sethherr/grape-doorkeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
76 lines (64 loc) · 1.76 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
ruby '2.2.2'
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5'
# Use postgresql as the database for Active Record
gem 'pg'
gem 'sass'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 2.7.2'
gem 'coffee-rails', '~> 4.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.0.4'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Basic running
gem 'haml'
gem 'puma'
gem 'bootstrap-sass', '~> 3.3.1'
gem 'devise'
gem 'omniauth'
gem 'omniauth-bike-index'
gem 'devise-bootstrap-views'
gem 'hashie-forbidden_attributes'
# Store configuration options
gem 'dotenv-rails'
# Authentication
gem 'doorkeeper', '~> 2.2.2'
gem 'wine_bouncer'
# Things tied in with Grade and swagger
gem 'kramdown'
gem 'kaminari'
gem 'grape'
gem 'active_model_serializers'
gem 'grape-active_model_serializers'
gem 'grape-swagger'
gem 'api-pagination'
gem 'rack-cors', require: 'rack/cors'
# Temporarily remote branch because updates, for more info look at
# https://github.com/d4be4st/swagger-ui_rails/pull/13
gem 'swagger-ui_rails', github: 'audionerd/swagger-ui_rails'
group :development, :test do
gem 'rspec-rails'
gem 'shoulda-matchers', '~> 3.0', require: false
gem 'foreman'
gem 'rerun'
gem 'vcr'
gem 'rspec', '~>3.3.0'
gem 'factory_girl_rails'
gem 'pry'
gem 'growl'
gem 'guard'
gem 'guard-rubocop'
gem 'guard-rspec', '4.2.8'
gem 'guard-livereload'
end
group :development do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem 'database_cleaner'
end