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 on Rails para iniciantes - Aula 44
Search
Jackson Pires
March 07, 2016
Programming
0
68
Ruby on Rails para iniciantes - Aula 44
Ruby on Rails para iniciantes - Aula 44
Asset Pipeline 1/2
Jackson Pires
March 07, 2016
Tweet
Share
More Decks by Jackson Pires
See All by Jackson Pires
Como usar uma box Vagrant com a Cloud9 IDE para desenvolver com Elixir ou Phoenix?
jackson_pires
0
79
Conhecendo o módulo Forwardable do Ruby
jackson_pires
0
65
COMO INSPIRAR PESSOAS E MONETIZAR O SEU CONHECIMENTO?
jackson_pires
0
56
Conhecendo a gem guard, guard-rspec e guard-livereload
jackson_pires
0
80
GDG Meetup - Carreiras em T.I.
jackson_pires
0
82
20 minutos insanos de TDD e Ruby
jackson_pires
0
110
Ruby on Rails para Iniciantes - Aula 46
jackson_pires
0
160
Ruby on Rails para Iniciantes - Aula 47
jackson_pires
0
80
Ruby on Rails para Iniciantes - Aula 48
jackson_pires
0
370
Other Decks in Programming
See All in Programming
詳解!defer panic recover のしくみ / Understanding defer, panic, and recover
convto
0
230
Navigating Dependency Injection with Metro
zacsweers
3
230
Ruby×iOSアプリ開発 ~共に歩んだエコシステムの物語~
temoki
0
270
@Environment(\.keyPath)那么好我不允许你们不知道! / atEnvironment keyPath is so good and you should know it!
lovee
0
110
奥深くて厄介な「改行」と仲良くなる20分
oguemon
1
510
AIでLINEスタンプを作ってみた
eycjur
1
230
Oracle Database Technology Night 92 Database Connection control FAN-AC
oracle4engineer
PRO
1
440
Performance for Conversion! 分散トレーシングでボトルネックを 特定せよ
inetand
0
120
TDD 実践ミニトーク
contour_gara
1
290
Amazon RDS 向けに提供されている MCP Server と仕組みを調べてみた/jawsug-okayama-2025-aurora-mcp
takahashiikki
1
110
Improving my own Ruby thereafter
sisshiki1969
1
160
モバイルアプリからWebへの横展開を加速した話_Claude_Code_実践術.pdf
kazuyasakamoto
0
320
Featured
See All Featured
Producing Creativity
orderedlist
PRO
347
40k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
Practical Orchestrator
shlominoach
190
11k
How STYLIGHT went responsive
nonsquared
100
5.8k
Reflections from 52 weeks, 52 projects
jeffersonlam
352
21k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.5k
Documentation Writing (for coders)
carmenintech
74
5k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
13k
Embracing the Ebb and Flow
colly
87
4.8k
Designing for Performance
lara
610
69k
Code Reviewing Like a Champion
maltzj
525
40k
Transcript
Ruby on Rails Para iniciantes - 4a Temporada ;-)
http://videosdeti.com.br Subscribe!
Aula 44 Asset Pipeline Básico - Parte 1/2
Ruby on Rails Asset Pipeline? http://guides.rubyonrails.org/asset_pipeline.html
Ruby on Rails O que é? The asset pipeline provides
a framework to concatenate and minify or compress JavaScript and CSS assets. It also adds the ability to write these assets in other languages and pre-processors such as CoffeeScript, Sass and ERB.
Ruby on Rails Sprockets Gem
Ruby on Rails ExecJS https://github.com/rails/execjs#readme
Ruby on Rails Um passo atrás… ...a pasta public
Ruby on Rails Fingerprint?? /teste-f874376e322f065ee446a9dfb2aedc287701aed9923.css
Ruby on Rails Organização app/assets, lib/assets or vendor/assets.
Ruby on Rails Usando… <%= stylesheet_link_tag "application", media: "all" %>
<%= javascript_include_tag "application" %>
Ruby on Rails Obrigado!