ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Rails e suas Gems @rr_martins Rodrigo Martins [email_address]
Gems? ? bom assim por dentro?
Gems? http://docs.rubygems.org/ Gerenciador de pacotes do Ruby. Uiiii... Uma Joia... :D
Um pouco de Ruby! (String) >> string = " liberdade Interativa! eu Fui!" => " liberdade Interativa! eu Fui!" >> def chamada(evento="LI") >>  puts evento.to_s+" Eu fui!" >> end >> chamada("Liberdade Interativa") => Liberdade Interativa Eu fui! >> chamada => LI Eu fui!
Um pouco de Ruby! (Array) >> evento = Array.new >> evento << &quot;LI&quot; => [&quot;LI&quot;] >> evento << &quot;Liberdade Interativa&quot; => [&quot;LI&quot;, &quot;Liberdade Interativa&quot;] >> evento << &quot;RockOnRails&quot; => [&quot;LI&quot;, &quot;Liberdade Interativa&quot;, &quot;RockOnRails&quot;]
Um pouco de Ruby! (Array) >> def chamada(evento) >>  evento.each do |even| >>  puts  even.to_s+&quot; Eu Fui! :D&quot; >>  end >> end >> chamada(evento) => LI Eu Fui! :D => Liberdade Interativa Eu Fui! :D => RockOnRails Eu Fui! :D
J¨¢ posso usar as Gems? Calma!  Vamos com calma,  as Gems precisam do Rails!
Projeto Blog!
Gems Apresentadas! ->  Paperclip->github.com/thoughtbot/paperclip Sugest?o: Rodrigo Mendon?a (rails-br) ->  Devise -> github.com/plataformatec/devise Sugest?o: Celso Dantas (rails-br) ->  Twitter -> github.com/jnunemaker/twitter
Projeto Rails criado.. rails new <projeto>
Gems Apresentadas! ->  Paperclip -> github.com/thoughtbot/paperclip Sugest?o: Rodrigo Mendon?a (rails-br) ->   Devise -> github.com/plataformatec/devise Sugest?o: Celso Dantas (rails-br) ->  Twitter -> github.com/jnunemaker/twitter
PaperClip No GemFile: gem &quot;paperclip&quot;, &quot;~> 2.4&quot; No Model: (Post) has_attached_file :image, :styles => { :medium => &quot;300x300>&quot;, :thumb => &quot;100x100>&quot; }
PaperClip Migrate : class AddImageToPost < ActiveRecord::Migration def self.up add_column :posts, :image_file_name, :string add_column :posts, :image_content_type, :string add_column :posts, :image_file_size, :integer add_column :posts, :image_updated_at, :datetime end def self.down remove_column :posts, :image_updated_at remove_column :posts, :image_file_size remove_column :posts, :image_content_type remove_column :posts, :image_file_name end end
PaperClip <%= form_for :post, :url => posts_path,  : html => { :class => :form, :multipart => true  }  do |f| -%> <div class=&quot;field&quot;> <strong><%= f.label :data %></strong> <%= f.hidden_field :data, :value => Time.now %> <%= f.label Time.now.to_date %> </div> <div class=&quot;field&quot;> <%= f.label :titulo %><br /> <%= f.text_field :titulo %> </div> <div class=&quot;field&quot;> <%= f.label :chamada %><br /> <%= f.text_field :chamada %> </div>
PaperClip <div class=&quot;field&quot;> <%= f.label :texto %><br /> <%= f.text_area :texto %> </div> <div class=&quot;field&quot;> <%= f.label &quot;Imagem&quot; %> <%= f.file_field :image %> </div> <div class=&quot;actions&quot;> <%= f.submit %> </div> <% end -%>
PaperClip View Show: <%= image_tag @post.image.url if !@post.image_file_name.nil? %> <%= image_tag @post.image.url(:medium) if !@post.image_file_name.nil? %> <%= image_tag @post.image.url(:thumb) if !@post.image_file_name.nil? %>
PaperClip
Gems Apresentadas! ->  Paperclip->github.com/thoughtbot/paperclip Sugest?o: Rodrigo Mendon?a (rails-br) ->  Devise -> github.com/plataformatec/devise Sugest?o: Celso Dantas (rails-br) ->  Twitter -> github.com/jnunemaker/twitter
Devise
Devise Gemfile: gem ¡°devise¡± Iniciando o Devise: rails generate devise:install Configurando um model: rails generate devise usuario
Devise
Devise Rodando Migrate:
Devise Autenticando Controller: before_filter :authenticate_user! before_filter :authenticate_user!,  :except => [:index, :show, :create]
Gems Apresentadas! ->  Paperclip->github.com/thoughtbot/paperclip Sugest?o: Rodrigo Mendon?a (rails-br) ->  Devise -> github.com/plataformatec/devise Sugest?o: Celso Dantas (rails-br) ->  Twitter -> github.com/jnunemaker/twitter
Twitter
Twitter GemFile: gem 'twitter'
Twitter <table border=&quot;0&quot;> <tr> <td><%= image_tag Twitter.profile_image(&quot;rr_martins&quot;, :size => 'bigger') %></td> <td><%= Twitter.user('rr_martins').location %> <br> <%= Twitter.user('rr_martins').description %> </td>
Twitter </tr> <% Twitter.user_timeline(&quot;rr_martins&quot;,{:count=>5}).each do |twit| %> <tr> <td colspan=&quot;2&quot;><%= twit.text %></td> </tr> <% end %> </table>
Fontes http://github.com https://www.ruby-toolbox.com http://rubygems.org/ Em breve: http://rrmartins.com https://github.com/rrmartins/blog
Duvidas? @rr_martins Rodrigo Martins [email_address]
Obrigado! @rr_martins Rodrigo Martins [email_address]

More Related Content

Similar to Rails e suas Gems (20)

Haml, Sass & Compass
Haml, Sass & CompassHaml, Sass & Compass
Haml, Sass & Compass
L¨¢szl¨® B¨¢csi
?
Building Web Interface On Rails
Building Web Interface On RailsBuilding Web Interface On Rails
Building Web Interface On Rails
Wen-Tien Chang
?
Forum Presentation
Forum PresentationForum Presentation
Forum Presentation
Angus Pratt
?
Haml & Sass presentation
Haml & Sass presentationHaml & Sass presentation
Haml & Sass presentation
bryanbibat
?
JSP Custom Tags
JSP Custom TagsJSP Custom Tags
JSP Custom Tags
BG Java EE Course
?
Ajax ons2
Ajax ons2Ajax ons2
Ajax ons2
Chad Davis
?
Illuminated Hacks -- Where 2.0 101 Tutorial
Illuminated Hacks -- Where 2.0 101 TutorialIlluminated Hacks -- Where 2.0 101 Tutorial
Illuminated Hacks -- Where 2.0 101 Tutorial
mikel_maron
?
HTML5 Overview
HTML5 OverviewHTML5 Overview
HTML5 Overview
reybango
?
Widgets Tools Keynote
Widgets Tools KeynoteWidgets Tools Keynote
Widgets Tools Keynote
Michael Mahemoff
?
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
OpenSocial - GTUG Stockholm Meeting Oct 1 2009OpenSocial - GTUG Stockholm Meeting Oct 1 2009
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
Jacob Gyllenstierna
?
Lecture 6 - Comm Lab: Web @ ITP
Lecture 6 - Comm Lab: Web @ ITPLecture 6 - Comm Lab: Web @ ITP
Lecture 6 - Comm Lab: Web @ ITP
yucefmerhi
?
Ajax
AjaxAjax
Ajax
wangjiaz
?
Building Complex GUI Apps The Right Way. With Ample SDK - SWDC2010
Building Complex GUI Apps The Right Way. With Ample SDK - SWDC2010Building Complex GUI Apps The Right Way. With Ample SDK - SWDC2010
Building Complex GUI Apps The Right Way. With Ample SDK - SWDC2010
Sergey Ilinsky
?
What's new in Rails 2?
What's new in Rails 2?What's new in Rails 2?
What's new in Rails 2?
brynary
?
merb.intro
merb.intromerb.intro
merb.intro
pjb3
?
Rails 3 And The Real Secret To High Productivity Presentation
Rails 3 And The Real Secret To High Productivity PresentationRails 3 And The Real Secret To High Productivity Presentation
Rails 3 And The Real Secret To High Productivity Presentation
railsconf
?
Optimizing Drupal for Mobile Devices
Optimizing Drupal for Mobile DevicesOptimizing Drupal for Mobile Devices
Optimizing Drupal for Mobile Devices
Sugree Phatanapherom
?
Developing and testing ajax components
Developing and testing ajax componentsDeveloping and testing ajax components
Developing and testing ajax components
Ignacio Coloma
?
Islide
IslideIslide
Islide
Misterio2010
?
Meetup django common_problems(1)
Meetup django common_problems(1)Meetup django common_problems(1)
Meetup django common_problems(1)
Eric Satterwhite
?
Building Web Interface On Rails
Building Web Interface On RailsBuilding Web Interface On Rails
Building Web Interface On Rails
Wen-Tien Chang
?
Haml & Sass presentation
Haml & Sass presentationHaml & Sass presentation
Haml & Sass presentation
bryanbibat
?
Illuminated Hacks -- Where 2.0 101 Tutorial
Illuminated Hacks -- Where 2.0 101 TutorialIlluminated Hacks -- Where 2.0 101 Tutorial
Illuminated Hacks -- Where 2.0 101 Tutorial
mikel_maron
?
HTML5 Overview
HTML5 OverviewHTML5 Overview
HTML5 Overview
reybango
?
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
OpenSocial - GTUG Stockholm Meeting Oct 1 2009OpenSocial - GTUG Stockholm Meeting Oct 1 2009
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
Jacob Gyllenstierna
?
Lecture 6 - Comm Lab: Web @ ITP
Lecture 6 - Comm Lab: Web @ ITPLecture 6 - Comm Lab: Web @ ITP
Lecture 6 - Comm Lab: Web @ ITP
yucefmerhi
?
Building Complex GUI Apps The Right Way. With Ample SDK - SWDC2010
Building Complex GUI Apps The Right Way. With Ample SDK - SWDC2010Building Complex GUI Apps The Right Way. With Ample SDK - SWDC2010
Building Complex GUI Apps The Right Way. With Ample SDK - SWDC2010
Sergey Ilinsky
?
What's new in Rails 2?
What's new in Rails 2?What's new in Rails 2?
What's new in Rails 2?
brynary
?
merb.intro
merb.intromerb.intro
merb.intro
pjb3
?
Rails 3 And The Real Secret To High Productivity Presentation
Rails 3 And The Real Secret To High Productivity PresentationRails 3 And The Real Secret To High Productivity Presentation
Rails 3 And The Real Secret To High Productivity Presentation
railsconf
?
Developing and testing ajax components
Developing and testing ajax componentsDeveloping and testing ajax components
Developing and testing ajax components
Ignacio Coloma
?
Meetup django common_problems(1)
Meetup django common_problems(1)Meetup django common_problems(1)
Meetup django common_problems(1)
Eric Satterwhite
?

Recently uploaded (20)

The Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative MetalsThe Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative Metals
anupriti
?
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
?
Making GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementationMaking GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementation
Jeffrey Funk
?
Recruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OGRecruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OG
Matt Charney
?
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
voginip
?
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
?
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
?
Harnessing the Power of AI in Salesforce.pdf
Harnessing the Power of AI in Salesforce.pdfHarnessing the Power of AI in Salesforce.pdf
Harnessing the Power of AI in Salesforce.pdf
rabiabajaj1
?
The Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptxThe Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptx
zsbaranyai
?
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
?
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI
?
Benefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle CloudBenefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle Cloud
AstuteBusiness
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
IBsolution GmbH
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
Generative AI & Telco track at AMLD 2024
Generative AI & Telco track at AMLD 2024Generative AI & Telco track at AMLD 2024
Generative AI & Telco track at AMLD 2024
Laurent Ciavaglia
?
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
NTTDOCOMO-ServiceInnovation
?
AI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AIAI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AI
Kris Verlaenen
?
The Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative MetalsThe Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative Metals
anupriti
?
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
?
Making GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementationMaking GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementation
Jeffrey Funk
?
Recruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OGRecruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OG
Matt Charney
?
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
voginip
?
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
?
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
?
Harnessing the Power of AI in Salesforce.pdf
Harnessing the Power of AI in Salesforce.pdfHarnessing the Power of AI in Salesforce.pdf
Harnessing the Power of AI in Salesforce.pdf
rabiabajaj1
?
The Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptxThe Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptx
zsbaranyai
?
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
?
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI
?
Benefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle CloudBenefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle Cloud
AstuteBusiness
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
IBsolution GmbH
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
Generative AI & Telco track at AMLD 2024
Generative AI & Telco track at AMLD 2024Generative AI & Telco track at AMLD 2024
Generative AI & Telco track at AMLD 2024
Laurent Ciavaglia
?
AI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AIAI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AI
Kris Verlaenen
?

Rails e suas Gems

  • 1. Rails e suas Gems @rr_martins Rodrigo Martins [email_address]
  • 2. Gems? ? bom assim por dentro?
  • 3. Gems? http://docs.rubygems.org/ Gerenciador de pacotes do Ruby. Uiiii... Uma Joia... :D
  • 4. Um pouco de Ruby! (String) >> string = &quot; liberdade Interativa! eu Fui!&quot; => &quot; liberdade Interativa! eu Fui!&quot; >> def chamada(evento=&quot;LI&quot;) >> puts evento.to_s+&quot; Eu fui!&quot; >> end >> chamada(&quot;Liberdade Interativa&quot;) => Liberdade Interativa Eu fui! >> chamada => LI Eu fui!
  • 5. Um pouco de Ruby! (Array) >> evento = Array.new >> evento << &quot;LI&quot; => [&quot;LI&quot;] >> evento << &quot;Liberdade Interativa&quot; => [&quot;LI&quot;, &quot;Liberdade Interativa&quot;] >> evento << &quot;RockOnRails&quot; => [&quot;LI&quot;, &quot;Liberdade Interativa&quot;, &quot;RockOnRails&quot;]
  • 6. Um pouco de Ruby! (Array) >> def chamada(evento) >> evento.each do |even| >> puts even.to_s+&quot; Eu Fui! :D&quot; >> end >> end >> chamada(evento) => LI Eu Fui! :D => Liberdade Interativa Eu Fui! :D => RockOnRails Eu Fui! :D
  • 7. J¨¢ posso usar as Gems? Calma! Vamos com calma, as Gems precisam do Rails!
  • 9. Gems Apresentadas! -> Paperclip->github.com/thoughtbot/paperclip Sugest?o: Rodrigo Mendon?a (rails-br) -> Devise -> github.com/plataformatec/devise Sugest?o: Celso Dantas (rails-br) -> Twitter -> github.com/jnunemaker/twitter
  • 10. Projeto Rails criado.. rails new <projeto>
  • 11. Gems Apresentadas! -> Paperclip -> github.com/thoughtbot/paperclip Sugest?o: Rodrigo Mendon?a (rails-br) -> Devise -> github.com/plataformatec/devise Sugest?o: Celso Dantas (rails-br) -> Twitter -> github.com/jnunemaker/twitter
  • 12. PaperClip No GemFile: gem &quot;paperclip&quot;, &quot;~> 2.4&quot; No Model: (Post) has_attached_file :image, :styles => { :medium => &quot;300x300>&quot;, :thumb => &quot;100x100>&quot; }
  • 13. PaperClip Migrate : class AddImageToPost < ActiveRecord::Migration def self.up add_column :posts, :image_file_name, :string add_column :posts, :image_content_type, :string add_column :posts, :image_file_size, :integer add_column :posts, :image_updated_at, :datetime end def self.down remove_column :posts, :image_updated_at remove_column :posts, :image_file_size remove_column :posts, :image_content_type remove_column :posts, :image_file_name end end
  • 14. PaperClip <%= form_for :post, :url => posts_path, : html => { :class => :form, :multipart => true } do |f| -%> <div class=&quot;field&quot;> <strong><%= f.label :data %></strong> <%= f.hidden_field :data, :value => Time.now %> <%= f.label Time.now.to_date %> </div> <div class=&quot;field&quot;> <%= f.label :titulo %><br /> <%= f.text_field :titulo %> </div> <div class=&quot;field&quot;> <%= f.label :chamada %><br /> <%= f.text_field :chamada %> </div>
  • 15. PaperClip <div class=&quot;field&quot;> <%= f.label :texto %><br /> <%= f.text_area :texto %> </div> <div class=&quot;field&quot;> <%= f.label &quot;Imagem&quot; %> <%= f.file_field :image %> </div> <div class=&quot;actions&quot;> <%= f.submit %> </div> <% end -%>
  • 16. PaperClip View Show: <%= image_tag @post.image.url if !@post.image_file_name.nil? %> <%= image_tag @post.image.url(:medium) if !@post.image_file_name.nil? %> <%= image_tag @post.image.url(:thumb) if !@post.image_file_name.nil? %>
  • 18. Gems Apresentadas! -> Paperclip->github.com/thoughtbot/paperclip Sugest?o: Rodrigo Mendon?a (rails-br) -> Devise -> github.com/plataformatec/devise Sugest?o: Celso Dantas (rails-br) -> Twitter -> github.com/jnunemaker/twitter
  • 20. Devise Gemfile: gem ¡°devise¡± Iniciando o Devise: rails generate devise:install Configurando um model: rails generate devise usuario
  • 23. Devise Autenticando Controller: before_filter :authenticate_user! before_filter :authenticate_user!, :except => [:index, :show, :create]
  • 24. Gems Apresentadas! -> Paperclip->github.com/thoughtbot/paperclip Sugest?o: Rodrigo Mendon?a (rails-br) -> Devise -> github.com/plataformatec/devise Sugest?o: Celso Dantas (rails-br) -> Twitter -> github.com/jnunemaker/twitter
  • 26. Twitter GemFile: gem 'twitter'
  • 27. Twitter <table border=&quot;0&quot;> <tr> <td><%= image_tag Twitter.profile_image(&quot;rr_martins&quot;, :size => 'bigger') %></td> <td><%= Twitter.user('rr_martins').location %> <br> <%= Twitter.user('rr_martins').description %> </td>
  • 28. Twitter </tr> <% Twitter.user_timeline(&quot;rr_martins&quot;,{:count=>5}).each do |twit| %> <tr> <td colspan=&quot;2&quot;><%= twit.text %></td> </tr> <% end %> </table>
  • 29. Fontes http://github.com https://www.ruby-toolbox.com http://rubygems.org/ Em breve: http://rrmartins.com https://github.com/rrmartins/blog
  • 30. Duvidas? @rr_martins Rodrigo Martins [email_address]
  • 31. Obrigado! @rr_martins Rodrigo Martins [email_address]