質問編集履歴

2

gemfileの追加

2020/09/12 12:35

投稿

masaosan18
masaosan18

スコア64

test CHANGED
File without changes
test CHANGED
@@ -78,6 +78,106 @@
78
78
 
79
79
 
80
80
 
81
+ ```ここに言語を入力
82
+
83
+ source 'https://rubygems.org'
84
+
85
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
86
+
87
+
88
+
89
+ ruby '2.7.0'
90
+
91
+
92
+
93
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
94
+
95
+ gem 'rails', '~> 6.0.3', '>= 6.0.3.1'
96
+
97
+ # Use mysql as the database for Active Record
98
+
99
+ gem 'mysql2', '>= 0.4.4'
100
+
101
+ # Use Puma as the app server
102
+
103
+ gem 'puma', '~> 4.1'
104
+
105
+ # Reduces boot times through caching; required in config/boot.rb
106
+
107
+ gem 'bootsnap', '>= 1.4.2', require: false
108
+
109
+ gem 'pagy', '~> 3.5'
110
+
111
+ # Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
112
+
113
+ # gem 'rack-cors'
114
+
115
+
116
+
117
+
118
+
119
+ # devise関連
120
+
121
+ gem 'devise'
122
+
123
+ gem 'devise_token_auth'
124
+
125
+
126
+
127
+ # CORS設定
128
+
129
+ gem 'rack-cors'
130
+
131
+
132
+
133
+ #ActiveModelSerializers
134
+
135
+ gem 'active_model_serializers'
136
+
137
+
138
+
139
+ group :development, :test do
140
+
141
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
142
+
143
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
144
+
145
+ #.envを使うためのgem
146
+
147
+ gem 'dotenv-rails'
148
+
149
+ gem 'faker'
150
+
151
+ end
152
+
153
+
154
+
155
+ group :development do
156
+
157
+ gem 'listen', '~> 3.2'
158
+
159
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
160
+
161
+ gem 'spring'
162
+
163
+ gem 'spring-watcher-listen', '~> 2.0.0'
164
+
165
+ gem 'pry-byebug'
166
+
167
+ end
168
+
169
+
170
+
171
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
172
+
173
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
174
+
175
+
176
+
177
+ ```
178
+
179
+
180
+
81
181
  日本郵便のhttps://www.post.japanpost.jp/zipcode/dl/oogaki-zip.html
82
182
 
83
183
  ここにある全国一括のcsvファイルを読み込みたいのですがうまくいきません。

1

本文

2020/09/12 12:35

投稿

masaosan18
masaosan18

スコア64

test CHANGED
File without changes
test CHANGED
@@ -84,4 +84,4 @@
84
84
 
85
85
 
86
86
 
87
- 詳しい方、教えてください
87
+ 詳しい方、教えてください