Skip to content

Commit

Permalink
Merge pull request #793 from cafedomancer/use-consistency-terms
Browse files Browse the repository at this point in the history
Use consistent terms
  • Loading branch information
hsbt authored Feb 28, 2024
2 parents 6a4b5b6 + e634f53 commit 21611ca
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
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

0 comments on commit 21611ca

Please sign in to comment.