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
31
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
uniqueパッケージの内部実装を支えるweak pointerの話
magavel
0
890
AI Coding Meetup #3 - 導入セッション / ai-coding-meetup-3
izumin5210
0
370
私はどうやって技術力を上げたのか
yusukebe
43
17k
そのpreloadは必要?見過ごされたpreloadが技術的負債として爆発した日
mugitti9
2
2.9k
『毎日の移動』を支えるGoバックエンド内製開発
yutautsugi
2
120
Let's Write a Train Tracking Algorithm
twocentstudios
0
220
ソフトウェア設計の実践的な考え方
masuda220
PRO
3
400
2分台で1500examples完走!爆速CIを支える環境構築術 - Kaigi on Rails 2025
falcon8823
3
2.8k
PostgreSQLで手軽にDuckDBを使う!DuckDB&pg_duckdb入門/osk2025-duckdb
takahashiikki
1
230
デミカツ切り抜きで面倒くさいことはPythonにやらせよう
aokswork3
0
130
メモリ不足との戦い〜大量データを扱うアプリでの実践例〜
kwzr
1
770
プロダクト開発をAI 1stに変革する〜SaaS is dead時代で生き残るために〜 / AI 1st Product Development
kobakei
0
470
Featured
See All Featured
Principles of Awesome APIs and How to Build Them.
keavy
127
17k
Visualization
eitanlees
148
16k
Facilitating Awesome Meetings
lara
56
6.6k
The World Runs on Bad Software
bkeepers
PRO
71
11k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
2.6k
Practical Orchestrator
shlominoach
190
11k
Become a Pro
speakerdeck
PRO
29
5.5k
Navigating Team Friction
lara
189
15k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Learning to Love Humans: Emotional Interface Design
aarron
274
40k
Faster Mobile Websites
deanohume
310
31k
jQuery: Nuts, Bolts and Bling
dougneiner
64
7.9k
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!