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
77
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
75
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
Create a website using Spatial Web
akkeylab
0
270
Passkeys for Java Developers
ynojima
3
850
コードに語らせよう――自己ドキュメント化が内包する楽しさについて / Let the Code Speak
nrslib
6
1.4k
Haskell でアルゴリズムを抽象化する / 関数型言語で競技プログラミング
naoya
17
4.2k
Perplexity Slack Botを作ってAI活用を進めた話 / AI Engineering Summit プレイベント
n3xem
0
640
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
160
XSLTで作るBrainfuck処理系
makki_d
0
190
Cline指示通りに動かない? AI小説エージェントで学ぶ指示書の書き方と自動アップデートの仕組み
kamomeashizawa
1
460
「兵法」から見る質とスピード
ickx
0
260
F#で自在につくる静的ブログサイト - 関数型まつり2025
pizzacat83
0
290
Parallel::Pipesの紹介
skaji
2
910
Using AI Tools Around Software Development
inouehi
0
1.2k
Featured
See All Featured
Optimising Largest Contentful Paint
csswizardry
37
3.3k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
A Tale of Four Properties
chriscoyier
159
23k
How STYLIGHT went responsive
nonsquared
100
5.6k
Rebuilding a faster, lazier Slack
samanthasiow
81
9k
Facilitating Awesome Meetings
lara
54
6.4k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
52
2.8k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.1k
Git: the NoSQL Database
bkeepers
PRO
430
65k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.3k
Designing for Performance
lara
609
69k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
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!