Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Ruby Tuesday - Template Your Way to Heaven
Search
Thành
October 06, 2020
Programming
0
28
Ruby Tuesday - Template Your Way to Heaven
How init new application using Rails Template
Thành
October 06, 2020
Tweet
Share
Other Decks in Programming
See All in Programming
なぜあなたのオブザーバビリティ導入は頓挫するのか
ryota_hnk
5
590
STUNMESH-go: Wireguard NAT穿隧工具的源起與介紹
tjjh89017
0
350
バイブコーディング超えてバイブデプロイ〜CloudflareMCPで実現する、未来のアプリケーションデリバリー〜
azukiazusa1
3
810
AHC051解法紹介
eijirou
0
430
実践!App Intents対応
yuukiw00w
1
230
대규모 트래픽을 처리하는 프론트 개발자의 전략
maryang
0
120
Dart 参戦!!静的型付き言語界の隠れた実力者
kno3a87
0
190
バイブスあるコーディングで ~PHP~ 便利ツールをつくるプラクティス
uzulla
1
330
大規模FlutterプロジェクトのCI実行時間を約8割削減した話
teamlab
PRO
0
460
それ CLI フレームワークがなくてもできるよ / Building CLI Tools Without Frameworks
orgachem
PRO
17
3.8k
Go製CLIツールをnpmで配布するには
syumai
2
1.2k
DataformでPythonする / dataform-de-python
snhryt
0
160
Featured
See All Featured
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
50
5.5k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
The Pragmatic Product Professional
lauravandoore
36
6.8k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.6k
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.8k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.4k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
How to Ace a Technical Interview
jacobian
278
23k
Transcript
None
• • • • •
How do you start a new Rails project?
rails new <app_name>
None
rails new <app_name> -m <template.rb>
None
None
None
Original Rails Template Variants Addons Thor Template API
Add-ons Variants Testing . ├── .template │ ├── addons │
│ └── docker │ │ ├── ... │ │ └── template.rb │ └── variants │ │ ├── api │ │ │ ├── ... │ │ │ └── template.rb │ │ └── web │ │ ├── ... │ │ └── template.rb │ └── spec ├── app ├── bin ├── config ├── spec ├── ... ├── README.md ├── README.md.tt └── template.rb
4.1.0
DRY Workflow DRY… DRY DRY EVERYWHEREE...
None
Thanks!