質問編集履歴

1

追加情報です

2018/08/06 13:26

投稿

leymond
leymond

スコア11

test CHANGED
File without changes
test CHANGED
@@ -62,16 +62,132 @@
62
62
 
63
63
 
64
64
 
65
+ 追加情報です。
66
+
67
+ gem fileは以下です。
68
+
69
+ source 'https://rubygems.org'
70
+
71
+ gem 'rails', '5.2.0'
72
+
73
+ gem 'puma', '~> 3.11
74
+
75
+ gem 'sass-rails', '~> 5.0'
76
+
77
+ gem 'uglifier', '>= 1.3.0'
78
+
79
+ gem 'coffee-rails', '~> 4.2'
80
+
81
+ gem 'turbolinks', '~> 5'
82
+
83
+ gem 'jbuilder', '~> 2.5'
84
+
85
+
86
+
87
+ group :development,
88
+
89
+ :test do
90
+
91
+ gem 'sqlite3', '1.3.13'
92
+
93
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
94
+
95
+ end
96
+
97
+
98
+
99
+ group
100
+
101
+ :development do
102
+
103
+ gem 'web-console', '>= 3.3.0'
104
+
105
+  gem 'listen', '>= 3.0.5', '< 3.2'
106
+
107
+
108
+
109
+
110
+
111
+ gem 'spring'
112
+
113
+ gem 'spring-watcher-listen', '~> 2.0.0'
114
+
115
+ end
116
+
117
+
118
+
119
+ group
120
+
121
+ :production do
122
+
123
+ gem 'pg', '0.20.0'
124
+
125
+ end
126
+
127
+
128
+
129
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
130
+
131
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
132
+
133
+
134
+
135
+ config/application.rbは以下です。
136
+
137
+  require_relative 'boot'
138
+
139
+
140
+
141
+ require 'rails/all'
142
+
143
+
144
+
145
+ # Require the gems listed in Gemfile, including any gems
146
+
147
+ # you've limited to :test,
148
+
149
+ :development, or :production.
150
+
151
+ Bundler.require(*Rails.groups)
152
+
153
+
154
+
155
+ module HelloApp
156
+
157
+ class Application < Rails::Application
158
+
159
+
160
+
161
+ # Initialize configuration defaults for originally generated Rails version.
162
+
163
+
164
+
165
+ config.load_defaults 5.2
166
+
167
+
168
+
65
- また AWS Resources にもメッセージがありましたが、何か影響しているのでしょうか。Lambda functionは有料サービスなのでしょうか。重ねて宜しくお願いします。
169
+ # Settings in config/environments/* take precedence over those specified here.
170
+
171
+
172
+
173
+ # Application configuration can go into files in config/initializers
174
+
175
+
176
+
177
+ # -- all .rb files in that directory are automatically loaded after loading
178
+
179
+
180
+
181
+ # the framework and any gems in your application.
182
+
183
+ end
184
+
185
+ end
66
186
 
67
187
 
68
188
 
69
189
 
70
190
 
71
- Remote Functions
191
+ 本日rails-vしたら command not foundとでました。チュートリアルのHerokuデプロイまでしてしまいましたが、途中修正することは可能でしょうか?
72
192
 
73
- ×Failed to load remote functions
193
+ 宜しくお願いいたします。
74
-
75
- Your Lambda functions failed to load because of insufficient permissions.Add lambda:ListFunctions on resource:
76
-
77
- *to your logged in user,and then refresh AWS Cloud9.