グローバルを汚さないHanami環境の立ち上げ
グローバルを汚さないHanami環境の立ち上げ
About
rbenv-binstubの使い方とhanamiをプロジェクトごとで分割するための備忘録として
Requirement
- bundler
- rbenv-binstubs(おすすめ)
Operation
Init project (file)
mkdir project && cd project
bundle init
source 'https://rubygems.org'
gem 'hanami'
Installation
# install with binstubs
bundle install --path=vendor/bundle --binstubs=/vendor/bin
# or not
bundle install --path=vendor/bundle
Create & Run app
hanami new yourapp
mv yourapp/* ./ && mv yourapp/.* ./
rm -rf yourapp
bundle update
# if set binstubs
hanami s
# or not
bundle exec hanami s
アプリケーション作成について
Create & Run app における以下のコマンド
hanami new yourapp
mv yourapp/* ./ && mv yourapp/.* ./
は、rails new .
のような動作をHanamiで同様にhanami new .
とするとうまくいかない(参考1, 参考2)ので、ファイル移動にて無理やり同等の動作を実現します(project と yourappで違ってるけど)。
.git
など.
から始まるファイル・ディレクトリをワイルドカード*
で指定させるためには
# zsh
setopt -s dotglob
# bash
shopt -s dotglob
を行うと
mv yourapp/* ./
のように簡素に書くことができます。
参考
bundle exec はもういやだ
How can I get mv (or the * wildcard) to move hidden files?
shopt command in zsh
Author And Source
この問題について(グローバルを汚さないHanami環境の立ち上げ), 我々は、より多くの情報をここで見つけました https://qiita.com/arsley/items/4e32f170130d94d25e44著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .