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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Jackson Pires
March 07, 2016
Programming
0
70
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
82
Conhecendo o módulo Forwardable do Ruby
jackson_pires
0
68
COMO INSPIRAR PESSOAS E MONETIZAR O SEU CONHECIMENTO?
jackson_pires
0
57
Conhecendo a gem guard, guard-rspec e guard-livereload
jackson_pires
0
83
GDG Meetup - Carreiras em T.I.
jackson_pires
0
88
20 minutos insanos de TDD e Ruby
jackson_pires
0
110
Ruby on Rails para Iniciantes - Aula 46
jackson_pires
0
170
Ruby on Rails para Iniciantes - Aula 47
jackson_pires
0
82
Ruby on Rails para Iniciantes - Aula 48
jackson_pires
0
370
Other Decks in Programming
See All in Programming
今更考える「単一責任原則」 / Thinking about the Single Responsibility Principle
tooppoo
3
1.6k
20260228_JAWS_Beginner_Kansai
takuyay0ne
5
470
文字コードの話
qnighy
44
17k
new(1.26) ← これすき / kamakura.go #8
utgwkk
0
2.2k
Windows on Ryzen and I
seosoft
0
240
CSC307 Lecture 13
javiergs
PRO
0
320
nuget-server - あなたが必要だったNuGetサーバー
kekyo
PRO
0
220
S3ストレージクラスの「見える」「ある」「使える」は全部違う ─ 体験から見た、仕様の深淵を覗く
ya_ma23
0
270
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
480
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
15
2.9k
AWS Infrastructure as Code の新機能 2025 総まとめ 〜SA 4人による怒涛のデモ祭り〜
konokenj
10
3.3k
RubyとGoでゼロから作る証券システム: 高信頼性が求められるシステムのコードの外側にある設計と運用のリアル
free_world21
0
260
Featured
See All Featured
Amusing Abliteration
ianozsvald
0
130
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
930
What Being in a Rock Band Can Teach Us About Real World SEO
427marketing
0
190
Bootstrapping a Software Product
garrettdimon
PRO
307
120k
Building Flexible Design Systems
yeseniaperezcruz
330
40k
We Have a Design System, Now What?
morganepeng
55
8k
The Language of Interfaces
destraynor
162
26k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
10k
Paper Plane
katiecoart
PRO
0
48k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
The AI Search Optimization Roadmap by Aleyda Solis
aleyda
1
5.4k
Designing for humans not robots
tammielis
254
26k
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!