「Ruby rails」の版間の差分

提供: wikipokpok
移動先: 案内検索
(vimgrepの使い方)
2行目: 2行目:
 
== vimgrepの使い方 ==
 
== vimgrepの使い方 ==
 
ディレクトリを再帰的に検索
 
ディレクトリを再帰的に検索
  :vim App app/** | cw
+
  :vim 検索文字 app/** | cw
  :vim App app/controller/** | cw
+
  :vim 検索文字 app/controller/** | cw
 
カレントバッファを対象にする
 
カレントバッファを対象にする
   :vim {pattern} %
+
   :vim 検索文字 %
 +
 
 
== NERDTreeの使い方 ==
 
== NERDTreeの使い方 ==
 
[[NERDTreeの使い方]]
 
[[NERDTreeの使い方]]

2020年6月16日 (火) 17:17時点における版

vimgrepの使い方

ディレクトリを再帰的に検索

:vim 検索文字 app/** | cw
:vim 検索文字 app/controller/** | cw

カレントバッファを対象にする

 :vim 検索文字 %

NERDTreeの使い方

NERDTreeの使い方

Homebrewのインストール rbenvのインストール

https://qiita.com/kaumino/items/726e8436d7e960ca39f9

gemのインストール先 例えばbootstrap 環境によって違う

~/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap

Node.jsのインストール

brew install nodebrew
nodebrew -v
   nodebrew 1.0.1
   Example:
   # install
   nodebrew install v8.9.4
   # use a specific version number
   nodebrew use v8.9.4
mkdir -p ~/.nodebrew/src
nodebrew install stable
nodebrew ls
   v14.4.0
   current: none
nodebrew use 14.4.0
   use v14.4.0
nodebrew ls        
   v14.4.0
   current: v14.4.0
echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.zprofile
source ~/.zprofile
node -v                                                            
   v14.4.0

ruby 補完

Plug 'neoclide/coc.nvim', {'branch': 'release'}
:PlugInstall
:CocInstall coc-solargraph
   Installed extension coc-solargraph@1.1.6 at /Users/jq/.config/coc/extensions/node_modules/coc-solargraph
touch ~/.vim/coc-settings.json
{
  "languageserver": {
   "sorbet": {
     "command": "srb",
     "args": ["tc", "--typed", "true", "--enable-all-experimental-lsp-features", "--lsp", "--disable-watchman", "--dir", "."],
     "filetypes": ["ruby"],
     "rootPatterns": ["sorbet/config"],
     "initializationOptions": {},
     "settings": {}
   }
 }
}
Solargraph gem not found. Run `gem install solargraph` or update your Gemfile., Install Now? (y/n)
gem install solargraph

rails postgres

rails _6.0.3_ new tepnote -d postgresql