質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.50%
Cloud9

Cloud9は、クラウドからのプログラミングが可能になるWebサービス。IDEとしての機能が搭載されており、GitHubやHerokuなど他ツールとの連携も可能です。ブラウザ上で動くため、デバイスに関係なく開発環境を準備できます。

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Q&A

0回答

260閲覧

railsでメール認証を搭載しようと思うのですが、サーバーが立ち上がりません。

SNGin

総合スコア16

Cloud9

Cloud9は、クラウドからのプログラミングが可能になるWebサービス。IDEとしての機能が搭載されており、GitHubやHerokuなど他ツールとの連携も可能です。ブラウザ上で動くため、デバイスに関係なく開発環境を準備できます。

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

0グッド

0クリップ

投稿2018/03/30 10:15

編集2022/01/12 10:55

Cloud9でRailsで作ったアプリにメール認証を搭載しようと思うのですが、
このサイトhttps://qiita.com/shizuma/items/c8c2e71af8c1dcf3d1c2
を参考にしてやっているのですが、下記のエラーが出て、railsサーバーが立ち上がりません。
https://gyazo.com/c08f11dfe6f6fbf8ede8e1a7e2bf4080

/usr/local/rvm/gems/ruby-2.4.0/gems/activesupport-5.0.6/lib/active_support/dependencies.rb:293:in `require': /home/ubuntu/workspace/message-board/config/environments/development.rb:64: syntax error, unexpected end-of-input, expecting keyword_end (SyntaxError)
ここがエラーなのはわかるのですが、どこを変更すればいいのかがわかりません。
何か参考になることを教えて頂きたいです。
よろしくお願いします。

Ruby

1Rails.application.configure do 2 # Settings specified here will take precedence over those in config/application.rb. 3 4 # In the development environment your application's code is reloaded on 5 # every request. This slows down response time but is perfect for development 6 # since you don't have to restart the web server when you make code changes. 7 config.cache_classes = false 8 9 # Do not eager load code on boot. 10 config.eager_load = false 11 12 # Show full error reports. 13 config.consider_all_requests_local = true 14 15 # Enable/disable caching. By default caching is disabled. 16 if Rails.root.join('tmp/caching-dev.txt').exist? 17 config.action_controller.perform_caching = true 18 19 config.cache_store = :memory_store 20 config.public_file_server.headers = { 21 'Cache-Control' => 'public, max-age=172800' 22 } 23 else 24 config.action_controller.perform_caching = false 25 26 config.cache_store = :null_store 27 end 28 29 # Don't care if the mailer can't send. 30 config.action_mailer.raise_delivery_errors = false 31 32 config.action_mailer.perform_caching = false 33 34 # Print deprecation notices to the Rails logger. 35 config.active_support.deprecation = :log 36 37 # Raise an error on page load if there are pending migrations. 38 config.active_record.migration_error = :page_load 39 40 # Debug mode disables concatenation and preprocessing of assets. 41 # This option may cause significant delays in view rendering with a large 42 # number of complex assets. 43 config.assets.debug = true 44 45 # Suppress logger output for asset requests. 46 config.assets.quiet = true 47 48 # Raises error for missing translations 49 # config.action_view.raise_on_missing_translations = true 50 51 # Use an evented file watcher to asynchronously detect changes in source code, 52 # routes, locales, etc. This feature depends on the listen gem. 53 config.file_watcher = ActiveSupport::EventedFileUpdateChecker 54 55 config.action_mailer.default_url_options = { host: 'localhost:3000' } 56 57 config.action_mailer.delivery_method = :sendmail 58 59 config.action_mailer.smtp_settings = { 60 :enable_starttls_auto => true, 61 :address => "smtp.gmail.com", 62 :port => 587, 63 :domain => 'smtp.gmail.com', 64 :user_name => "invincible.gnj1875@gmail.com", 65 :password => "Gojs1875", 66 :authentication => :plain, 67 } 68end

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

gouf

2018/03/31 06:42

エラーメッセージのとおり、構文エラーだと思いますが、 config/environments/development.rb の 64 行目前後って実際はどのように記述されていますか?
SNGin

2018/03/31 15:13

回答ありがとうございます。追記しました。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだ回答がついていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.50%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問