Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use consistent terms #793

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _includes/main_guides.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<hr>

ガイドを進めていて行き詰まったときはコーチに助けてもらいましょう。また [Ruby、Rails、コンソール、テキストエディターについての便利なチートシート](https://www.pragtob.info/rails-beginner-cheatsheet/) も参考にしてみてください。
ガイドを進めていて行き詰まったときはコーチに助けてもらいましょう。また [Ruby、Rails、コンソール、テキストエディタについての便利なチートシート](https://www.pragtob.info/rails-beginner-cheatsheet/) も参考にしてみてください。

## ガイド

Expand Down
4 changes: 2 additions & 2 deletions _pages/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ permalink: app

このガイドではRuby on Railsというフレームワークを使って *railsgirls* という名前のアプリを作っていきます。

まず、Terminal を開いて、以下のコマンドを入力してください。
まず、ターミナルを開いて、以下のコマンドを入力してください。

<div class="os-specific">
<div class="mac nix">
Expand Down Expand Up @@ -127,7 +127,7 @@ $
</div>
</div>

コマンドプロンプトが表示されていないときは、新しいコマンドは実行できません。`cd` や他のコマンドを実行しようとしても動作しません。同じターミナルウィンドウで、Railsサーバを止めたり、通常のコマンドプロンプトに戻す場合は、Terminalで Controlキーを押しながら、Cを押して( <kbd>Ctrl</kbd>+<kbd>C</kbd> )、Railsサーバを終了します。
コマンドプロンプトが表示されていないときは、新しいコマンドは実行できません。`cd` や他のコマンドを実行しようとしても動作しません。同じターミナルウィンドウで、Railsサーバを止めたり、通常のコマンドプロンプトに戻す場合は、ターミナルで Controlキーを押しながら、Cを押して( <kbd>Ctrl</kbd>+<kbd>C</kbd> )、Railsサーバを終了します。

{% coach %}
- それぞれのコマンドが何をするのか明確になっているか確認してください。 `cd`, `dir`/`ls`, `mkdir`
Expand Down
2 changes: 1 addition & 1 deletion _pages/deployment/fly-io.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Fly.ioに導入するメリットと従来のサーバーとの比較につい

### pg gemをインストールしよう

テキストエディターで`Gemfile`ファイルを開き、以下の行を
テキストエディタで`Gemfile`ファイルを開き、以下の行を

{% highlight ruby %}
gem "sqlite3"
Expand Down
2 changes: 1 addition & 1 deletion _pages/digital-ocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permalink: digitalocean

### pg gemをインストールしよう

テキストエディターで`Gemfile`ファイルを開き、以下の行を
テキストエディタで`Gemfile`ファイルを開き、以下の行を

{% highlight ruby %}
gem "sqlite3"
Expand Down
2 changes: 1 addition & 1 deletion _pages/gravatar.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gemfileを開いて、 `devise` の下に次の一行を追加します。
gem 'gravtastic'
{% endhighlight %}

Terminal で、次のコマンドを実行してください。
ターミナルで、次のコマンドを実行してください。

{% highlight sh %}
bundle
Expand Down
2 changes: 1 addition & 1 deletion _pages/html-and-css.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Resource: W3Schools [What is Bootstrap](https://www.w3schools.com/whatis/whatis_

Bootstrapはいくつかの異なるパーツから構成されていますが、最初に使用するのはCSSです。そのためには、アプリのHTMLに対して何行かのコードを追加する必要があります。具体的には、レイアウトのファイルに対してです。レイアウトファイルは、Railsのすべてのビューに対して共通のレイアウトパーツを提供します。これにより、すべてのページで同じ基本レイアウトとCSSが読み込まれるようになります。

テキストエディターで `app/views/layouts/application.html.erb` ファイルを開きます
テキストエディタで `app/views/layouts/application.html.erb` ファイルを開きます

{% highlight erb %}
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
Expand Down
2 changes: 1 addition & 1 deletion _pages/touristic-autism_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ git config --global user.email [email protected]

## 追加ガイド

* Guide 0: [Ruby、Rails、コンソール、テキストエディターについての便利なチートシート](https://www.pragtob.info/rails-beginner-cheatsheet/)
* Guide 0: [Ruby、Rails、コンソール、テキストエディタについての便利なチートシート](https://www.pragtob.info/rails-beginner-cheatsheet/)
* Guide 1: [Heroku に Rails アプリを deploy しよう by Terence Lee](/heroku) / [OpenShiftでアプリを公開する by Katie Miller](/openshift) / [anyninesを使用してインターネットに公開しよう!](/anynines)
* Guide 2: [Gravatarでプロフィール写真を追加する](/gravatar)
* Guide 3: [Lucy Bainによるアプリの追加説明を見る](https://github.com/lbain/railsgirls)
Expand Down
Loading