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
Claude Code と OpenAI o3 で メタデータ情報を作る
laket
0
110
なぜあなたのオブザーバビリティ導入は頓挫するのか
ryota_hnk
5
580
それ CLI フレームワークがなくてもできるよ / Building CLI Tools Without Frameworks
orgachem
PRO
17
3.8k
Go製CLIツールをnpmで配布するには
syumai
2
1.1k
20250808_AIAgent勉強会_ClaudeCodeデータ分析の実運用〜競馬を題材に回収率100%の先を目指すメソッドとは〜
kkakeru
0
130
SwiftでMCPサーバーを作ろう!
giginet
PRO
2
230
AIに安心して任せるためにTypeScriptで一意な型を作ろう
arfes0e2b3c
0
340
PHPカンファレンス関西2025 基調講演
sugimotokei
6
1.1k
自作OSでDOOMを動かしてみた
zakki0925224
1
1.3k
AIのメモリー
watany
13
1.4k
ライブ配信サービスの インフラのジレンマ -マルチクラウドに至ったワケ-
mirrativ
1
130
画像コンペでのベースラインモデルの育て方
tattaka
3
1.5k
Featured
See All Featured
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
880
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
47
9.6k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
8
760
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.4k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
21k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.6k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
For a Future-Friendly Web
brad_frost
179
9.9k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.4k
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!