質問編集履歴
1
gemfile全文を載せました
title
CHANGED
File without changes
|
body
CHANGED
@@ -44,8 +44,55 @@
|
|
44
44
|
|
45
45
|
herokuのaddonとして、DBをmysqlにするためにcleardbと、line_APIを使うためにfixieを使った。
|
46
46
|
DBをmysqlにするためのバージョン合わせ等は行なった。
|
47
|
-
gemfile
|
47
|
+
gemfile全文は以下
|
48
48
|
```
|
49
|
+
source 'https://rubygems.org'
|
50
|
+
|
51
|
+
|
52
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
53
|
+
gem 'rails', '4.2.6'
|
54
|
+
# Use mysql as the database for Active Record
|
55
|
+
gem 'mysql2', '0.3.18'
|
56
|
+
# Use SCSS for stylesheets
|
57
|
+
gem 'sass-rails', '~> 5.0'
|
58
|
+
# Use Uglifier as compressor for JavaScript assets
|
59
|
+
gem 'uglifier', '>= 1.3.0'
|
60
|
+
# Use CoffeeScript for .coffee assets and views
|
61
|
+
gem 'coffee-rails', '~> 4.1.0'
|
62
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
63
|
+
# gem 'therubyracer', platforms: :ruby
|
64
|
+
|
65
|
+
# Use jquery as the JavaScript library
|
66
|
+
gem 'jquery-rails'
|
67
|
+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
68
|
+
gem 'turbolinks'
|
69
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
70
|
+
gem 'jbuilder', '~> 2.0'
|
71
|
+
# bundle exec rake doc:rails generates the API under doc/api.
|
72
|
+
gem 'sdoc', '~> 0.4.0', group: :doc
|
73
|
+
|
74
|
+
# Use ActiveModel has_secure_password
|
75
|
+
# gem 'bcrypt', '~> 3.1.7'
|
76
|
+
|
77
|
+
# Use Unicorn as the app server
|
78
|
+
# gem 'unicorn'
|
79
|
+
|
80
|
+
# Use Capistrano for deployment
|
81
|
+
# gem 'capistrano-rails', group: :development
|
82
|
+
|
83
|
+
group :development, :test do
|
84
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
85
|
+
gem 'byebug'
|
86
|
+
end
|
87
|
+
|
88
|
+
group :development do
|
89
|
+
# Access an IRB console on exception pages or by using <%= console %> in views
|
90
|
+
gem 'web-console', '~> 2.0'
|
91
|
+
|
92
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
93
|
+
gem 'spring'
|
94
|
+
end
|
95
|
+
|
49
96
|
gem 'dotenv-rails'
|
50
97
|
gem 'faraday'
|
51
98
|
gem 'faraday_middleware'
|
@@ -53,4 +100,5 @@
|
|
53
100
|
group :production do
|
54
101
|
gem 'rails_12factor'
|
55
102
|
end
|
103
|
+
|
56
104
|
```
|