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
66
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
72
Conhecendo o módulo Forwardable do Ruby
jackson_pires
0
60
COMO INSPIRAR PESSOAS E MONETIZAR O SEU CONHECIMENTO?
jackson_pires
0
54
Conhecendo a gem guard, guard-rspec e guard-livereload
jackson_pires
0
78
GDG Meetup - Carreiras em T.I.
jackson_pires
0
70
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
78
Ruby on Rails para Iniciantes - Aula 48
jackson_pires
0
360
Other Decks in Programming
See All in Programming
Beyond ORM
77web
11
1.5k
ある日突然あなたが管理しているサーバーにDDoSが来たらどうなるでしょう?知ってるようで何も知らなかったDDoS攻撃と対策 #phpcon.2024
akase244
2
7.6k
競技プログラミングへのお誘い@阪大BOOSTセミナー
kotamanegi
0
390
GitHubで育つ コラボレーション文化 : ニフティでのインナーソース挑戦事例 - 2024-12-16 GitHub Universe 2024 Recap in ZOZO
niftycorp
PRO
0
1k
fs2-io を試してたらバグを見つけて直した話
chencmd
0
280
Monixと常駐プログラムの勘どころ / Scalaわいわい勉強会 #4
stoneream
0
320
テストケースの名前はどうつけるべきか?
orgachem
PRO
1
180
AWSのLambdaで PHPを動かす選択肢
rinchoku
2
360
Findy Team+ Awardを受賞したかった!ベストプラクティス応募内容をふりかえり、開発生産性向上もふりかえる / Findy Team Plus Award BestPractice and DPE Retrospective 2024
honyanya
0
130
Jaspr Dart Web Framework 박제창 @Devfest 2024
itsmedreamwalker
0
140
iOS開発におけるCopilot For XcodeとCode Completion / copilot for xcode
fuyan777
1
1.1k
コンテナをたくさん詰め込んだシステムとランタイムの変化
makihiro
1
170
Featured
See All Featured
Rails Girls Zürich Keynote
gr2m
94
13k
Fireside Chat
paigeccino
34
3.1k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
29
2k
Automating Front-end Workflow
addyosmani
1366
200k
Agile that works and the tools we love
rasmusluckow
328
21k
Building a Modern Day E-commerce SEO Strategy
aleyda
38
7k
Unsuck your backbone
ammeep
669
57k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
3
330
Producing Creativity
orderedlist
PRO
343
39k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
1
150
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
28
2.2k
The Pragmatic Product Professional
lauravandoore
32
6.3k
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!