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
78
Conhecendo o módulo Forwardable do Ruby
jackson_pires
0
65
COMO INSPIRAR PESSOAS E MONETIZAR O SEU CONHECIMENTO?
jackson_pires
0
54
Conhecendo a gem guard, guard-rspec e guard-livereload
jackson_pires
0
80
GDG Meetup - Carreiras em T.I.
jackson_pires
0
78
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
#QiitaBash MCPのセキュリティ
ryosukedtomita
1
1.3k
ふつうの技術スタックでアート作品を作ってみる
akira888
1
850
おやつのお供はお決まりですか?@WWDC25 Recap -Japan-\(region).swift
shingangan
0
140
A2A プロトコルを試してみる
azukiazusa1
2
1.4k
AIともっと楽するE2Eテスト
myohei
6
2.6k
10 Costly Database Performance Mistakes (And How To Fix Them)
andyatkinson
0
340
Quand Symfony, ApiPlatform, OpenAI et LangChain s'allient pour exploiter vos PDF : de la théorie à la production…
ahmedbhs123
0
190
AIと”コードの評価関数”を共有する / Share the "code evaluation function" with AI
euglena1215
1
170
Startups on Rails in Past, Present and Future–Irina Nazarova, RailsConf 2025
irinanazarova
0
110
「Cursor/Devin全社導入の理想と現実」のその後
saitoryc
0
820
新メンバーも今日から大活躍!SREが支えるスケールし続ける組織のオンボーディング
honmarkhunt
5
7.4k
Result型で“失敗”を型にするPHPコードの書き方
kajitack
5
650
Featured
See All Featured
Why Our Code Smells
bkeepers
PRO
336
57k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
For a Future-Friendly Web
brad_frost
179
9.8k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
740
Rails Girls Zürich Keynote
gr2m
95
14k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.4k
RailsConf 2023
tenderlove
30
1.1k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
A Modern Web Designer's Workflow
chriscoyier
695
190k
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!