質問編集履歴

2

追加

2016/09/15 22:14

投稿

hi123
hi123

スコア61

test CHANGED
File without changes
test CHANGED
@@ -25,6 +25,24 @@
25
25
  と書き込んだ。
26
26
 
27
27
  どうしたらいいですか。
28
+
29
+
30
+
31
+ バージョンに関して。
32
+
33
+ rails -v
34
+
35
+ Rails 5.0.0.1
36
+
37
+ teishimaryouta-no-MacBook-Air:gatebook ryota$
38
+
39
+ teishimaryouta-no-MacBook-Air:gatebook ryota$ gem -v
40
+
41
+ 2.5.1
42
+
43
+ teishimaryouta-no-MacBook-Air:gatebook ryota$
44
+
45
+
28
46
 
29
47
 
30
48
 

1

追加

2016/09/15 22:14

投稿

hi123
hi123

スコア61

test CHANGED
File without changes
test CHANGED
@@ -25,3 +25,109 @@
25
25
  と書き込んだ。
26
26
 
27
27
  どうしたらいいですか。
28
+
29
+
30
+
31
+ 以下gemfile
32
+
33
+
34
+
35
+ source 'https://rubygems.org'
36
+
37
+
38
+
39
+
40
+
41
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
42
+
43
+ gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
44
+
45
+
46
+
47
+ gem 'devise', '~> 4.2'
48
+
49
+ # Use sqlite3 as the database for Active Record
50
+
51
+ gem 'sqlite3'
52
+
53
+ # Use Puma as the app server
54
+
55
+ gem 'puma', '~> 3.0'
56
+
57
+ # Use SCSS for stylesheets
58
+
59
+ gem 'sass-rails', '~> 5.0'
60
+
61
+ # Use Uglifier as compressor for JavaScript assets
62
+
63
+ gem 'uglifier', '>= 1.3.0'
64
+
65
+ # Use CoffeeScript for .coffee assets and views
66
+
67
+ gem 'coffee-rails', '~> 4.2'
68
+
69
+ # See https://github.com/rails/execjs#readme for more supported runtimes
70
+
71
+ # gem 'therubyracer', platforms: :ruby
72
+
73
+
74
+
75
+ # Use jquery as the JavaScript library
76
+
77
+ gem 'jquery-rails'
78
+
79
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
80
+
81
+ gem 'turbolinks', '~> 5'
82
+
83
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
84
+
85
+ gem 'jbuilder', '~> 2.5'
86
+
87
+ # Use Redis adapter to run Action Cable in production
88
+
89
+ # gem 'redis', '~> 3.0'
90
+
91
+ # Use ActiveModel has_secure_password
92
+
93
+ # gem 'bcrypt', '~> 3.1.7'
94
+
95
+
96
+
97
+ # Use Capistrano for deployment
98
+
99
+ # gem 'capistrano-rails', group: :development
100
+
101
+
102
+
103
+ group :development, :test do
104
+
105
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
106
+
107
+ gem 'byebug', platform: :mri
108
+
109
+ end
110
+
111
+
112
+
113
+ group :development do
114
+
115
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
116
+
117
+ gem 'web-console'
118
+
119
+ gem 'listen', '~> 3.0.5'
120
+
121
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
122
+
123
+ gem 'spring'
124
+
125
+ gem 'spring-watcher-listen', '~> 2.0.0'
126
+
127
+ end
128
+
129
+
130
+
131
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
132
+
133
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]