- Rails経験はありますか?
- ふだんから英語ドキュメントを読んでいますか?
- MVCアーキテクチャとはどういうものなのか教えてください
- RESTfulとはどういうものなのか教えてください
- 継承と委譲(合成)について教えてください
- Railsのconcernとはどういうもので、どういうときに使うものなのか教えてください
- concernの問題点を説明できますか?
- Railsのcallbackとはどういうもので、どういうときに使うものなのか教えてください
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// _z-index.scss | |
$zIndexList: ( | |
Background: -50100, | |
ContentFront: 50100, | |
UI: 50200, | |
UIPopup: 50300, | |
Modal: 50400, | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module A | |
def hoge | |
puts 'hoge' | |
end | |
end | |
A.hoge # a.rb:7:in `<main>': undefined method `hoge' for A:Module (NoMethodError) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module A | |
include B | |
def f() | |
utility() | |
g() | |
end | |
private |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { g } from './B'; | |
export function f() { | |
utility(); | |
g(); | |
} | |
function utility() { | |
// ... | |
} |
console.log('a')