$ echo 'gem "webpacker"' >> Gemfile
$ bundle install
$ rails webpacker:install
$ yarn add bootstrap@4.0.0-beta jquery popper.jsdiff --git a/config/webpack/environment.js b/config/webpack/environment.js
index d16d9af..86bf1a7 100644| # cf. | |
| # http://nttpc.now.tl/ac2014/?p=20#toc_4 | |
| # https://github.com/cookpad/styleguide/blob/master/ruby.ja.md | |
| # https://gist.github.com/onk/38bfbd78899d892e0e83 | |
| # https://github.com/onk/onkcop/blob/master/config/rubocop.yml | |
| AllCops: | |
| DisplayCopNames: true | |
| Exclude: | |
| - db/schema.rb |
$ echo 'gem "webpacker"' >> Gemfile
$ bundle install
$ rails webpacker:install
$ yarn add bootstrap@4.0.0-beta jquery popper.jsdiff --git a/config/webpack/environment.js b/config/webpack/environment.js
index d16d9af..86bf1a7 100644| { | |
| "sample-analyze": { | |
| "order": 0, | |
| "template": "sample-analyze-*", | |
| "settings": { | |
| "index": { | |
| "analysis": { | |
| "filter": { | |
| "greek_lowercase_filter": { | |
| "type": "lowercase", |
| 勉強会名 | 主催者・運営者 | URL | 直近一年での開催 |
|---|---|---|---|
| Okayama.rb | @ore_public @mako_wis |
https://okaruby.connpass.com | あり |
| okayama-js | @maepon | https://okayama-js.connpass.com/ | なし |
| 岡山Javaユーザー会 | @zephiransas @razon @ryosms |
https://okajug.doorkeeper.jp | あり |
| 中国地方DB勉強会(岡山) | @ikkitang @razon @mako_wis |
https://dbstudychugoku.github.io/ | あり |
| リーダブルな夜 | @SawadaStdDesign @maepon @sakie_boondock @mako_wis |
https://readable-na.connpass.com | あり |
| Okayama Managers Meeting | @mao_instantlife | https://omm.connpass.com | あり |
| 岡山Python勉強会 | @yamayama_k5 | https://okapython.connpass.com/ | あり |
| JBUG岡山 | @mao_instantlife | https://jbug.connpass.com/ | あり |
Rails PR: rails/rails#33521
This patch makes it possible to use per-environment credentials (i.e., config/credentials/staging.yml.enc) in Rails 5.2.
backport_rails_six_credentials.rb and backport_rails_six_credentials_command.rb somewhere, for example, into the lib/ folderconfig/application.rb:かならず、 ISUCON10 予選レギュレーション も併せてご確認ください。レギュレーションの内容と本マニュアルの内容に矛盾がある場合、本マニュアルの内容が優先されます。
(時刻はすべて JST)
| nameserver=$(grep -m 1 nameserver /etc/resolv.conf | awk '{print $2}') # find nameserver | |
| [ -n "$nameserver" ] || "unable to find nameserver" || exit 1 # exit immediately if nameserver was not found | |
| echo "##### nameserver found: '$nameserver'" | |
| localhost_entry=$(grep -v "127.0.0.1" /etc/hosts | grep "\slocalhost$") # find localhost entry excluding 127.0.0.1 | |
| if [ -n "$localhost_entry" ]; then # if localhost entry was found | |
| echo "##### localhost entry found: '$localhost_entry'" | |
| sed -i "s/$localhost_entry/$nameserver localhost/g" /etc/hosts # then update localhost entry with the new $nameserver | |
| else # else if entry was not found | |
| echo "##### localhost entry not found" | |
| echo "$nameserver localhost" >> /etc/hosts # then append $nameserver mapping to localhost |