LoginSignup
6
8

More than 5 years have passed since last update.

RubyMineの開発のはじめ方

Last updated at Posted at 2016-10-11

はじめに

  • 普段はVimで開発していたのですがRubymineが便利そうだったのでRubymineを導入してみました。

RubyMineのダウンロード

導入

導入時役にたった資料

ターミナルからrailsプロジェクトを作る

$ rails new project_name -d mysql

mysql内にデータベースを作成する

$ mysql -uroot
mysql> create database project_name_development;

RubyMineでプロジェクトを開く

先程作成したプロジェクトをRubyMineで開きます

Welcome_to_RubyMine.png

プロジェクトを選択します

Open_File_or_Project.png

コマンドの実行も可能です。bundle installを実行します。

Gemfile_-_employee-search_-____Develop_rails_employee-search_.png

ターミナルから以下を実行し、準備OK!
bundle install

便利なショートカット

コマンド 内容
cmd + shift + o ファイル検索
cmd + shift + a コマンド検索
cmd + shift + l 整形
6
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
8