-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
48 lines (40 loc) · 774 Bytes
/
Gemfile
File metadata and controls
48 lines (40 loc) · 774 Bytes
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
source 'https://rubygems.org'
gem 'rails', '~> 6.0.0.beta3'
gem 'mysql2'
gem 'convergence'
#認証
gem "omniauth-oauth2"
gem "omniauth-eveonline"
gem 'devise'
gem 'rack-cors'
gem 'ransack'
gem 'rest-client'
gem 'faraday'
gem 'delayed_job'
gem 'delayed_job_active_record'
gem 'activerecord-import'
# Json生成 https://github.com/Netflix/fast_jsonapi
gem 'fast_jsonapi'
group :development do
gem 'spring'
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'guard-livereload'
end
group :test do
gem 'rspec'
end
group :development, :test do
gem 'puma'
gem 'pry'
gem 'pry-doc'
gem 'pry-nav'
gem 'pry-rails'
gem 'rspec-rails'
gem 'guard'
gem 'guard-rspec'
gem 'database_cleaner'
gem 'factory_bot'
gem 'factory_bot_rails'
end