<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Igo Coelho</title>
	<atom:link href="http://www.igocoelho.com.br/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.igocoelho.com.br</link>
	<description>Meus pensamentos sobre muitas coisas...</description>
	<lastBuildDate>Tue, 03 Aug 2010 23:38:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<atom:link rel='hub' href='http://www.igocoelho.com.br/?pushpress=hub'/>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.6.3" -->
	<copyright>2006-2007 </copyright>
	<managingEditor>igocoelho@gmail.com (Igo Coelho)</managingEditor>
	<webMaster>igocoelho@gmail.com (Igo Coelho)</webMaster>
	<category>posts</category>
	<image>
		<url>http://www.igocoelho.com.br/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Igo Coelho</title>
		<link>http://www.igocoelho.com.br</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>Meus pensamentos sobre muitas coisas...</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &amp; Culture" />
	<itunes:author>Igo Coelho</itunes:author>
	<itunes:owner>
		<itunes:name>Igo Coelho</itunes:name>
		<itunes:email>igocoelho@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.igocoelho.com.br/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>Integração Sinatra, Cucumber e Webrat</title>
		<link>http://www.igocoelho.com.br/2010/07/29/integracao-sinatra-cucumber-webrat/</link>
		<comments>http://www.igocoelho.com.br/2010/07/29/integracao-sinatra-cucumber-webrat/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 00:49:04 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ágil]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=225</guid>
		<description><![CDATA[Sempre que consigo algum tempo tento escrever alguma coisa no blog e desta vez quero mostrar como é fácil o desenvolvimento em BDD no Sinatra usando Cucumber e Webrat. Para quem numca ouviu falar nesses caras vamos as apresentações. Quem é esse Sinatra? Para quem não saber Sinatra é uma linguagem de domínio específico (DSL [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Sempre que consigo algum tempo tento escrever alguma coisa no blog e desta vez quero mostrar como é fácil o desenvolvimento em BDD no Sinatra usando Cucumber e Webrat. Para quem numca ouviu falar nesses caras vamos as apresentações. <img src='http://www.igocoelho.com.br/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="text-align: justify;"><strong>Quem é esse Sinatra?</strong><br />
Para quem não saber <a href="http://www.sinatrarb.com" target="_blank">Sinatra</a> é uma linguagem de domínio específico (<a href="http://en.wikipedia.org/wiki/Domain-specific_language" target="_blank">DSL</a> &#8211; Domain Specific Language) para a criação rápida de aplicações web escritas em <a href="http://www.ruby-lang.org/pt/" target="_blank">ruby</a>. Ele mantém uma característica mínima definida, deixando livre o desenvolvedor para utilizar as ferramentas que melhor lhe servir em sua aplicação.</p>
<p style="text-align: justify;"><strong>BDD? Cucumber?</strong><br />
<a href="http://pt.wikipedia.org/wiki/Behavior_Driven_Development" target="_blank">BDD</a> ou Behavior Driven Development(Desenvolvimento Guiado por Comportamento) é uma técnica de desenvolvimento Ágil que encoraja colaboração entre desenvolvedores, setores de qualidade e pessoas não-técnicas ou de negócios num projeto de software. O foco em BDD é a linguagem e interações usadas no processo de desenvolvimento de software.</p>
<p style="text-align: justify;">O <a href="http://cukes.info/" target="_blank">Cucumber</a> foi criado para permitir que você execute a documentação de funcionalidades de uma aplicação, escritas em texto puro (também conhecidas como &#8220;estórias&#8221;). Com o Cucumber, isto é uma especificação executável que você pode  discutir com seu cliente e então usá-la para verificar o comportamento  correto dos testes. Por trás dos bastidores, você faz isto funcionar  criando &#8220;steps&#8221;, que são expressões regulares que executam código em  Ruby.</p>
<p style="text-align: justify;"><strong>Webrat</strong><br />
<a href="http://github.com/brynary/webrat" target="_blank">Webrat</a> é uma ferramenta fantástica que permite escrever rapidamente testes de aceitação expressivos e robustos para uma aplicação web Ruby. Ele nos fornece entre outras coisas:</p>
<ul>
<li>Simulador de browser de alto nível;</li>
<li>Suporta vários frameworks web Ruby;</li>
<li>Suporta os mais populares frameworks de teste;</li>
<li>Fornece uma API para verificar o HTML gerado usando CSS, XPath, etc.</li>
</ul>
<p style="text-align: justify;">Depois de feita as devidas apresentações vamos colocar a mão na massa. O primeiro passo é criar o diretório de nosso projeto.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">$ mkdir sinatra-cucumber
$ cd sinatra-cucumber</pre></td></tr></table></div>

<p style="text-align: justify;">Vamos acessar a pasta do projeto que acabamos de criar e executar os comandos abaixo para criar a pasta onde iremos definir nossas features.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">$ mkdir features
$ touch features/ola.feature</pre></td></tr></table></div>

<p><em>Obs.: Para quem não conhece o comando touch apenas criou um arquivo vazio.</em></p>
<p>No arquivo <strong>ola.feature</strong> escreva o seguinte código:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="text" style="font-family:monospace;"># language: pt
Funcionalidade: Ver páginas
  Como um usuário qualquer
  Eu quero acessar as páginas do sistema
  Para ter acesso a seu conteúdo
&nbsp;
  Cenário: Página principal
    Dado que acabei de acessar o sistema
    Então Eu devo ver o texto &quot;Olá, pessoal!&quot;</pre></td></tr></table></div>

<p>Vamos executar o cucumber e ver o que acontece. <img src='http://www.igocoelho.com.br/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">$ cucumber features/ola.feature</pre></td></tr></table></div>

<p><img class="alignnone size-full wp-image-251" title="cucumber_20100729_1" src="http://www.igocoelho.com.br/wp-content/uploads/2010/07/cucumber_20100729_1.png" alt="" width="519" height="441" /></p>
<p>Como era de esperar o teste não passou. Vamos em seguida criar os testes para nossa funcionalidade mais antes iremos criar uma tarefa rake para otimizar a chamada do Cucumber.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">$ touch Rakefile</pre></td></tr></table></div>

<p>O código para nossa tarefa rake que será executada com o comando &#8220;<em>rake  features</em>&#8221; é o seguinte:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rubygems'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'cucumber/rake/task'</span>
&nbsp;
<span style="color:#6666ff; font-weight:bold;">Cucumber::Rake::Task</span>.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#ff3333; font-weight:bold;">:features</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>t<span style="color:#006600; font-weight:bold;">|</span>
  t.<span style="color:#9900CC;">cucumber_opts</span> = <span style="color:#996600;">'--format pretty'</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></td></tr></table></div>

<p>Agora sim podemos continuar.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">$ mkdir features/step_definitions
$ touch features/step_definitions/ola_steps.rb</pre></td></tr></table></div>

<p>No arquivo <strong>ola_steps.rb</strong> teremos o seguinte código:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">Dado /^que acabei de acessar o sistema$/ do
  visit(&quot;/&quot;)
end
&nbsp;
Entao /^Eu devo ver o texto &quot;(.+)&quot;$/ do |texto|
  response_body.should =~ Regexp.new(Regexp.escape(texto))
end</pre></td></tr></table></div>

<p style="text-align: justify;">Estes dois passos simples fazem uma solicitação a url do nosso aplicativo pelo Webrat e verifica se a resposta contém o texto que estamos procurando.</p>
<p style="text-align: justify;">Abaixo segue as configurações que fazem a integração realmente acontecer. Vamos configurar o ambiente do Cucumber para usar o Webrat.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">$ mkdir features/support
$ touch features/support/env.rb</pre></td></tr></table></div>

<p>O conteúdo do arquivo <strong>env.rb</strong> deve ser o seguinte:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'spec/expectations'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rack/test'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'webrat'</span>
&nbsp;
Webrat.<span style="color:#9900CC;">configure</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>config<span style="color:#006600; font-weight:bold;">|</span>
  config.<span style="color:#9900CC;">mode</span> = <span style="color:#ff3333; font-weight:bold;">:rack</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">class</span> MyWorld
  <span style="color:#9966CC; font-weight:bold;">include</span> <span style="color:#6666ff; font-weight:bold;">Rack::<span style="color:#CC00FF; font-weight:bold;">Test</span>::Methods</span>
  <span style="color:#9966CC; font-weight:bold;">include</span> <span style="color:#6666ff; font-weight:bold;">Webrat::Methods</span>
  <span style="color:#9966CC; font-weight:bold;">include</span> <span style="color:#6666ff; font-weight:bold;">Webrat::Matchers</span>
&nbsp;
  <span style="color:#6666ff; font-weight:bold;">Webrat::Methods</span>.<span style="color:#9900CC;">delegate_to_session</span> <span style="color:#ff3333; font-weight:bold;">:response_code</span>, <span style="color:#ff3333; font-weight:bold;">:response_body</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> app
    <span style="color:#6666ff; font-weight:bold;">Sinatra::Application</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
World <span style="color:#9966CC; font-weight:bold;">do</span>
  MyWorld.<span style="color:#9900CC;">new</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#CC00FF; font-weight:bold;">File</span>.<span style="color:#9900CC;">dirname</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF; font-weight:bold;">__FILE__</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">'/../../ola'</span></pre></td></tr></table></div>

<p style="text-align: justify;">Agora que temos nosso cenário montado podemos escrever nossa aplicação web com essas simples linhas abaixo:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">$ touch ola.rb</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rubygems'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'sinatra'</span>
&nbsp;
get <span style="color:#996600;">'/'</span> <span style="color:#9966CC; font-weight:bold;">do</span>
  <span style="color:#996600;">&quot;Olá, pessoal!&quot;</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></td></tr></table></div>

<p>Agora vamos executar mais uma vez o Cucumber e ver os testes passando para ficarmos felizes. <img src='http://www.igocoelho.com.br/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">$ rake features</pre></td></tr></table></div>

<p><img class="alignnone size-full wp-image-250" title="cucumber_20100729_2" src="http://www.igocoelho.com.br/wp-content/uploads/2010/07/cucumber_20100729_2.png" alt="" width="522" height="185" /></p>
<p style="text-align: justify;">Bom pessoal, o objetivo foi cumprido e espero que tenha ficado claro como é fácil desenvolver em Sinatra usando BDD com Cucumber e Webrat. Sei que o exemplo foi bem simples e abaixo segue o código fonte do projeto e alguma referências para você conhecer mais do assunto.</p>
<p><strong>Código fonte</strong><a href="http://github.com/igocoelho/sinatra-cucumber" target="_blank"></p>
<p>http://github.com/igocoelho/sinatra-cucumber</a></p>
<p><strong>Conheça mais</strong><br />
Livro de Sinatra em Português<br />
<a href="http://sinatra.tailorfontela.com.br/" target="_blank">http://sinatra.tailorfontela.com.br/</a></p>
<p>Aplicação simples com Sinatra<br />
<a href="http://pomoti.com/aplicacao-simples-com-sinatra" target="_blank">http://pomoti.com/aplicacao-simples-com-sinatra</a></p>
<p>BDD com Cucumber, Selenium e Rails<br />
<a href="http://www.slideshare.net/cmilfont/bdd-com-cucumber-selenium-e-rails" target="_blank">http://www.slideshare.net/cmilfont/bdd-com-cucumber-selenium-e-rails</a></p>
<p>Introducão ao BDD com Cucumber, RSpec, Webrat e Selenium &#8211; Parte I<br />
<a href="http://jefferson.eti.br/?p=96" target="_blank">http://jefferson.eti.br/?p=96</a></p>
<p>Introducão ao BDD com Cucumber, RSpec,  Webrat e Selenium &#8211; Parte II<a href="http://jefferson.eti.br/?p=105" target="_blank"></p>
<p>http://jefferson.eti.br/?p=105</a></p>
<p>Introducão ao BDD com Cucumber, RSpec,  Webrat e Selenium &#8211; Parte III<a href="http://jefferson.eti.br/?p=139" target="_blank"></p>
<p>http://jefferson.eti.br/?p=139</a></p>
<p>Screencast Ruby on Rails: Introdução a RSpec e Cucumber<br />
<a href="http://vimeo.com/7108280" target="_blank">http://vimeo.com/7108280</a></p>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;title=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat&amp;bodytext=Sempre%20que%20consigo%20algum%20tempo%20tento%20escrever%20alguma%20coisa%20no%20blog%20e%20desta%20vez%20quero%20mostrar%20como%20%C3%A9%20f%C3%A1cil%20o%20desenvolvimento%20em%20BDD%20no%20Sinatra%20usando%20Cucumber%20e%20Webrat.%20Para%20quem%20numca%20ouviu%20falar%20nesses%20caras%20vamos%20as%20apresenta%C3%A7%C3%B5es.%20%3A-%29%0D%0AQuem%20%C3%A9%20" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;title=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat&amp;notes=Sempre%20que%20consigo%20algum%20tempo%20tento%20escrever%20alguma%20coisa%20no%20blog%20e%20desta%20vez%20quero%20mostrar%20como%20%C3%A9%20f%C3%A1cil%20o%20desenvolvimento%20em%20BDD%20no%20Sinatra%20usando%20Cucumber%20e%20Webrat.%20Para%20quem%20numca%20ouviu%20falar%20nesses%20caras%20vamos%20as%20apresenta%C3%A7%C3%B5es.%20%3A-%29%0D%0AQuem%20%C3%A9%20" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;t=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;title=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;title=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat&amp;annotation=Sempre%20que%20consigo%20algum%20tempo%20tento%20escrever%20alguma%20coisa%20no%20blog%20e%20desta%20vez%20quero%20mostrar%20como%20%C3%A9%20f%C3%A1cil%20o%20desenvolvimento%20em%20BDD%20no%20Sinatra%20usando%20Cucumber%20e%20Webrat.%20Para%20quem%20numca%20ouviu%20falar%20nesses%20caras%20vamos%20as%20apresenta%C3%A7%C3%B5es.%20%3A-%29%0D%0AQuem%20%C3%A9%20" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;title=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;title=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=Sempre%20que%20consigo%20algum%20tempo%20tento%20escrever%20alguma%20coisa%20no%20blog%20e%20desta%20vez%20quero%20mostrar%20como%20%C3%A9%20f%C3%A1cil%20o%20desenvolvimento%20em%20BDD%20no%20Sinatra%20usando%20Cucumber%20e%20Webrat.%20Para%20quem%20numca%20ouviu%20falar%20nesses%20caras%20vamos%20as%20apresenta%C3%A7%C3%B5es.%20%3A-%29%0D%0AQuem%20%C3%A9%20" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;title=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F&amp;t=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Integra%C3%A7%C3%A3o%20Sinatra%2C%20Cucumber%20e%20Webrat%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F29%2Fintegracao-sinatra-cucumber-webrat%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2010/07/29/integracao-sinatra-cucumber-webrat/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gerenciando as dependências com Ruby Tracker</title>
		<link>http://www.igocoelho.com.br/2010/07/12/gerenciando-dependencias-ruby-tracker/</link>
		<comments>http://www.igocoelho.com.br/2010/07/12/gerenciando-dependencias-ruby-tracker/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 14:19:29 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ágil]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=215</guid>
		<description><![CDATA[Ruby Tracker é um projeto de apoio à comunidade liderado por Jacob Swanner que tem como objetivo monitorar e informar as dependências entre gems em projetos Ruby. O Ruby Tracker funciona examinando o projeto e verificando quais gems são utilizadas e principalmente quais versões. Quando for preciso autalizar qualquer gem você será informado quais outras [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://rubytracker.com/" target="_blank">Ruby Tracker</a> é um projeto de apoio à comunidade liderado por Jacob Swanner que tem como objetivo monitorar e informar as dependências entre gems em projetos Ruby.</p>
<p style="text-align: justify;">O <a href="http://rubytracker.com/" target="_blank">Ruby Tracker</a> funciona examinando o projeto e verificando quais gems são utilizadas e principalmente quais versões. Quando for preciso autalizar qualquer gem você será informado quais outras também devem ser atualizadas e para qual versão.</p>
<p>Segue abaixo um vídeo demonstrando melhor o uso da ferramenta:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/YMC-TV2FCXg&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/YMC-TV2FCXg&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;title=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker&amp;bodytext=Ruby%20Tracker%20%C3%A9%20um%20projeto%20de%20apoio%20%C3%A0%20comunidade%20liderado%20por%20Jacob%20Swanner%20que%20tem%20como%20objetivo%20monitorar%20e%20informar%20as%20depend%C3%AAncias%20entre%20gems%20em%20projetos%20Ruby.%0D%0AO%20Ruby%20Tracker%20funciona%20examinando%20o%20projeto%20e%20verificando%20quais%20gems%20s%C3%A3o%20utilizad" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;title=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker&amp;notes=Ruby%20Tracker%20%C3%A9%20um%20projeto%20de%20apoio%20%C3%A0%20comunidade%20liderado%20por%20Jacob%20Swanner%20que%20tem%20como%20objetivo%20monitorar%20e%20informar%20as%20depend%C3%AAncias%20entre%20gems%20em%20projetos%20Ruby.%0D%0AO%20Ruby%20Tracker%20funciona%20examinando%20o%20projeto%20e%20verificando%20quais%20gems%20s%C3%A3o%20utilizad" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;t=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;title=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;title=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker&amp;annotation=Ruby%20Tracker%20%C3%A9%20um%20projeto%20de%20apoio%20%C3%A0%20comunidade%20liderado%20por%20Jacob%20Swanner%20que%20tem%20como%20objetivo%20monitorar%20e%20informar%20as%20depend%C3%AAncias%20entre%20gems%20em%20projetos%20Ruby.%0D%0AO%20Ruby%20Tracker%20funciona%20examinando%20o%20projeto%20e%20verificando%20quais%20gems%20s%C3%A3o%20utilizad" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;title=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;title=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=Ruby%20Tracker%20%C3%A9%20um%20projeto%20de%20apoio%20%C3%A0%20comunidade%20liderado%20por%20Jacob%20Swanner%20que%20tem%20como%20objetivo%20monitorar%20e%20informar%20as%20depend%C3%AAncias%20entre%20gems%20em%20projetos%20Ruby.%0D%0AO%20Ruby%20Tracker%20funciona%20examinando%20o%20projeto%20e%20verificando%20quais%20gems%20s%C3%A3o%20utilizad" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;title=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F&amp;t=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Gerenciando%20as%20depend%C3%AAncias%20com%20Ruby%20Tracker%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F07%2F12%2Fgerenciando-dependencias-ruby-tracker%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2010/07/12/gerenciando-dependencias-ruby-tracker/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Desenvolvimento WEB na FATENE</title>
		<link>http://www.igocoelho.com.br/2010/06/27/desenvolvimento-web-na-fatene/</link>
		<comments>http://www.igocoelho.com.br/2010/06/27/desenvolvimento-web-na-fatene/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 03:23:44 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Eventos]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=205</guid>
		<description><![CDATA[No mês de Junho fui representar o JavaCE a convite do prof. Marcondes Alexandre da FATENE. O objetivo era ministrar algumas aulas na cadeira de Servidores WEB no curso de Redes de Computadores. A ideia original era apresentar na prática aos alunos a configuração do Tomcat e o desenvolvimento para a web em Java com [...]]]></description>
			<content:encoded><![CDATA[<p>No mês de Junho fui representar o <a href="http://www.javace.org/" target="_blank">JavaCE</a> a convite do prof. Marcondes Alexandre da <a href="http://www.fatene.edu.br/" target="_blank">FATENE</a>. O objetivo era ministrar algumas aulas na cadeira de Servidores WEB no curso de <a href="http://www.fatene.edu.br/graduacao-tecnologica/redes-de-computadores-graduacao-tecnologica/2017" target="_blank">Redes de Computadores</a>.</p>
<p>A ideia original era apresentar na prática aos alunos a configuração do Tomcat e o desenvolvimento para a web em Java com JSP e Servlets. Por causa de alguns problemas pessoais essas aulas não se concretizaram e nesse semestre foi realizada apenas uma apresentação falando dessas tecnologias.</p>
<p>Estamos organizando para o próximo semestre essas aulas e abaixo compartilho os slides da apresentação.</p>
<div id="__ss_4624684" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Desenvolvimento web em java com JSP e Servlets" href="http://www.slideshare.net/igocoelho/jspservlets-fatene201006-4624684">Desenvolvimento web em java com JSP e Servlets</a></strong><object id="__sse4624684" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=jspservlets-fatene-201006-100626175601-phpapp02&amp;stripped_title=jspservlets-fatene201006-4624684" /><param name="name" value="__sse4624684" /><param name="allowfullscreen" value="true" /><embed id="__sse4624684" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=jspservlets-fatene-201006-100626175601-phpapp02&amp;stripped_title=jspservlets-fatene201006-4624684" name="__sse4624684" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/igocoelho">Igo Coelho</a>.</div>
</div>
<p>Disponibilizei os slides no <a href="http://www.slideshare.net" target="_blank">Slideshare</a> sobre <a href="http://www.creativecommons.org.br/" target="_blank">Creative Commons</a>, ou seja, é permitido copiar, distribuir, exibir e criar  obras derivadas. Você pode 				alterar, transformar ou criar outra apresentação com base nesta.</p>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;title=Desenvolvimento%20WEB%20na%20FATENE&amp;bodytext=No%20m%C3%AAs%20de%20Junho%20fui%20representar%20o%20JavaCE%20a%20convite%20do%20prof.%20Marcondes%20Alexandre%20da%20FATENE.%20O%20objetivo%20era%20ministrar%20algumas%20aulas%20na%20cadeira%20de%20Servidores%20WEB%20no%20curso%20de%20Redes%20de%20Computadores.%0D%0A%0D%0AA%20ideia%20original%20era%20apresentar%20na%20pr%C3%A1tica%20aos%20alun" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;title=Desenvolvimento%20WEB%20na%20FATENE&amp;notes=No%20m%C3%AAs%20de%20Junho%20fui%20representar%20o%20JavaCE%20a%20convite%20do%20prof.%20Marcondes%20Alexandre%20da%20FATENE.%20O%20objetivo%20era%20ministrar%20algumas%20aulas%20na%20cadeira%20de%20Servidores%20WEB%20no%20curso%20de%20Redes%20de%20Computadores.%0D%0A%0D%0AA%20ideia%20original%20era%20apresentar%20na%20pr%C3%A1tica%20aos%20alun" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;t=Desenvolvimento%20WEB%20na%20FATENE" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;title=Desenvolvimento%20WEB%20na%20FATENE" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;title=Desenvolvimento%20WEB%20na%20FATENE&amp;annotation=No%20m%C3%AAs%20de%20Junho%20fui%20representar%20o%20JavaCE%20a%20convite%20do%20prof.%20Marcondes%20Alexandre%20da%20FATENE.%20O%20objetivo%20era%20ministrar%20algumas%20aulas%20na%20cadeira%20de%20Servidores%20WEB%20no%20curso%20de%20Redes%20de%20Computadores.%0D%0A%0D%0AA%20ideia%20original%20era%20apresentar%20na%20pr%C3%A1tica%20aos%20alun" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;title=Desenvolvimento%20WEB%20na%20FATENE" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;title=Desenvolvimento%20WEB%20na%20FATENE&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=No%20m%C3%AAs%20de%20Junho%20fui%20representar%20o%20JavaCE%20a%20convite%20do%20prof.%20Marcondes%20Alexandre%20da%20FATENE.%20O%20objetivo%20era%20ministrar%20algumas%20aulas%20na%20cadeira%20de%20Servidores%20WEB%20no%20curso%20de%20Redes%20de%20Computadores.%0D%0A%0D%0AA%20ideia%20original%20era%20apresentar%20na%20pr%C3%A1tica%20aos%20alun" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;title=Desenvolvimento%20WEB%20na%20FATENE" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F&amp;t=Desenvolvimento%20WEB%20na%20FATENE" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Desenvolvimento%20WEB%20na%20FATENE&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Desenvolvimento%20WEB%20na%20FATENE&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Desenvolvimento%20WEB%20na%20FATENE%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F06%2F27%2Fdesenvolvimento-web-na-fatene%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2010/06/27/desenvolvimento-web-na-fatene/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Competição Java premiará os melhores</title>
		<link>http://www.igocoelho.com.br/2010/04/06/competicao-java-premiara-melhores/</link>
		<comments>http://www.igocoelho.com.br/2010/04/06/competicao-java-premiara-melhores/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 11:29:35 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Eventos]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=197</guid>
		<description><![CDATA[Rally de desenvolvimento será lançado em todo o Brasil e apresentará desafios para arquitetos, desenvolvedores e universitários O Rally Java EE Open Source é a primeira competição nacional voltada para incentivar o desenvolvimento de projetos Open Source que abrange todos os perfis de profissionais da TI. A idéia do movimento é desafiar os profissionais e [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.igocoelho.com.br/wp-content/uploads/2010/04/rallyjavaee.jpg"><img class="size-full wp-image-199 aligncenter" title="rallyjavaee" src="http://www.igocoelho.com.br/wp-content/uploads/2010/04/rallyjavaee.jpg" alt="" width="300" height="65" /></a><em>Rally de desenvolvimento será lançado em todo o Brasil e apresentará desafios para arquitetos, desenvolvedores e universitários</em></p>
<p>O Rally Java EE Open Source é a primeira competição nacional voltada para incentivar o desenvolvimento de projetos Open Source que abrange todos os perfis de profissionais da TI.</p>
<p>A idéia do movimento é desafiar os profissionais e possibilitar sua projeção no mercado. Além disso, eles terão a oportunidade de ampliar seus conhecimentos em diversas ferramentas Open Source e ainda ganhar prêmios valiosos.</p>
<p>Dividida em três categorias distintas &#8211; arquiteto, desenvolvedor e universitário -, a competição vai premiar os melhores em cada categoria. Entre os prêmios estão: uma viagem de sete dias com acompanhante, notebooks, Playstation 3 acompanhado de TV LCD 42”, iPods, vouchers para certificação Java e assinaturas da revista Java Magazine.</p>
<p>O lançamento oficial será em abril e as inscrições estarão abertas de 1º de maio a 30 de junho. Após se inscrever, o participante terá três meses para desenvolver seu projeto e submeter à comissão julgadora. O resultado dos melhores será divulgado em outubro na revista Java Magazine, apoiadora institucional da competição.</p>
<p>Já a entrega dos prêmios e medalhas será realizada dia 23 de outubro, em São Paulo, e os selecionados terão as despesas pagas pela organização para participar do evento. Nesta ocasião, eles apresentarão suas soluções à Comissão Julgadora que escolherá o vencedor de cada categoria. Além dos prêmios e medalhas, o primeiro lugar de cada categoria também terá a divulgação do seu mini-curriculo na revista Java Magazine.</p>
<p>Acompanhe as informações no site da competição <a href="http://www.rallyjavaeeopensource.com.br" target="_blank">www.rallyjavaeeopensource.com.br</a>. Leia também dicas mensais de desenvolvimento na revista Java Magazine.</p>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;title=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores&amp;bodytext=Rally%20de%20desenvolvimento%20ser%C3%A1%20lan%C3%A7ado%20em%20todo%20o%20Brasil%20e%20apresentar%C3%A1%20desafios%20para%20arquitetos%2C%20desenvolvedores%20e%20universit%C3%A1rios%0D%0A%0D%0AO%20Rally%20Java%20EE%20Open%20Source%20%C3%A9%20a%20primeira%20competi%C3%A7%C3%A3o%20nacional%20voltada%20para%20incentivar%20o%20desenvolvimento%20de%20projet" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;title=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores&amp;notes=Rally%20de%20desenvolvimento%20ser%C3%A1%20lan%C3%A7ado%20em%20todo%20o%20Brasil%20e%20apresentar%C3%A1%20desafios%20para%20arquitetos%2C%20desenvolvedores%20e%20universit%C3%A1rios%0D%0A%0D%0AO%20Rally%20Java%20EE%20Open%20Source%20%C3%A9%20a%20primeira%20competi%C3%A7%C3%A3o%20nacional%20voltada%20para%20incentivar%20o%20desenvolvimento%20de%20projet" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;t=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;title=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;title=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores&amp;annotation=Rally%20de%20desenvolvimento%20ser%C3%A1%20lan%C3%A7ado%20em%20todo%20o%20Brasil%20e%20apresentar%C3%A1%20desafios%20para%20arquitetos%2C%20desenvolvedores%20e%20universit%C3%A1rios%0D%0A%0D%0AO%20Rally%20Java%20EE%20Open%20Source%20%C3%A9%20a%20primeira%20competi%C3%A7%C3%A3o%20nacional%20voltada%20para%20incentivar%20o%20desenvolvimento%20de%20projet" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;title=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;title=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=Rally%20de%20desenvolvimento%20ser%C3%A1%20lan%C3%A7ado%20em%20todo%20o%20Brasil%20e%20apresentar%C3%A1%20desafios%20para%20arquitetos%2C%20desenvolvedores%20e%20universit%C3%A1rios%0D%0A%0D%0AO%20Rally%20Java%20EE%20Open%20Source%20%C3%A9%20a%20primeira%20competi%C3%A7%C3%A3o%20nacional%20voltada%20para%20incentivar%20o%20desenvolvimento%20de%20projet" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;title=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F&amp;t=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Competi%C3%A7%C3%A3o%20Java%20premiar%C3%A1%20os%20melhores%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F04%2F06%2Fcompeticao-java-premiara-melhores%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2010/04/06/competicao-java-premiara-melhores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Para não esquecer: Ruby on Rails Unit Testing Assertions</title>
		<link>http://www.igocoelho.com.br/2010/02/27/para-nao-esquecer-ruby-on-rails-assertions/</link>
		<comments>http://www.igocoelho.com.br/2010/02/27/para-nao-esquecer-ruby-on-rails-assertions/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 17:44:42 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ágil]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=184</guid>
		<description><![CDATA[Basic Assertions assert(boolean, message) assert(person.name == “John”, “Name was expected to be John.”) assert(item.errors.invalid?(:price)) assert_equal(expected, actual, message) assert_equal(person.name, “John”, “Name was expected to be John.”) assert_equal(“can’t be empty”, product.errors.on(:price)) assert_not_equal(expected, actual, message) assert_not_equal(person.name, “Mary”, “Name was Mary and it should not be.”) assert_not_equal(“is not a number”, product.errors.on(:price)) assert_raise(Exception, message) { block&#8230; } assert_raise(ZeroDivisionError, “Cannot divide [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong>Basic Assertions</strong></p>
<p style="text-align: left;"><strong>assert(boolean, message)</strong><br />
assert(person.name == “John”, “Name was expected to be John.”)<br />
assert(item.errors.invalid?(:price))</p>
<p><strong>assert_equal(expected, actual, message)</strong><br />
assert_equal(person.name, “John”, “Name was expected to be John.”)<br />
assert_equal(“can’t be empty”, product.errors.on(:price))<br />
<strong><br />
assert_not_equal(expected, actual, message)</strong><br />
assert_not_equal(person.name, “Mary”, “Name was Mary and it should not be.”)<br />
assert_not_equal(“is not a number”, product.errors.on(:price))<br />
<strong><br />
assert_raise(Exception, message) { block&#8230; }</strong><br />
assert_raise(ZeroDivisionError, “Cannot divide by zero!”) { 100 / 0 }<br />
assert_raise(ActiveRecord::RecordNotFound) { Product.find(bad_id) }<br />
<strong><br />
assert_nothing_raised(Exception, message) { block&#8230; }</strong><br />
assert_nothing_raised(ZeroDivisionError) { 100 / [0,1].max }<br />
assert_nothing_raised(ActiveRecord::RecordNotFound) { Product.find(good_id) }<br />
<strong><br />
assert_nil(object, message)</strong><br />
assert_nil( product, “Expected product to be nil.” )<br />
assert_nil( Wine.find(:first, :conditions =&gt; ‘id = 1000’) )<br />
<strong><br />
assert_not_nil(object, message)</strong><br />
assert_not_nil( product, “Product should not be nil.” )<br />
assert_not_nil( Wine.find(:first, :conditions =&gt; ‘id = 1’) )<br />
<strong><br />
assert_valid(activerecord_object)</strong><br />
same as: assert(object.valid?)<br />
assert_valid(@person)<br />
assert_valid( Wine.find(1) )<br />
<strong><br />
flunk(message)</strong><br />
always fails immediately; same as: assert(false, message)<br />
flunk(“Quantity should not be greater than 100”) if quantity &gt; 100<br />
flunk(“Either user or account should be valid”) unless user.valid? || account.valid?</p>
<p style="text-align: center;"><strong>Advanced Assertions</strong></p>
<p><strong>assert_match(pattern, string, message)</strong><br />
assert_match(/^\d,\d{3},\d{3}$/, “1,000,000”, “Should match this format.”)<br />
<strong><br />
assert_no_match(pattern, string, message)</strong><br />
assert_no_match(/\d{3},\d{2}$/, “1,000,000”, “Should not match this format.”)<br />
<strong><br />
assert_in_delta(expected_float, actual_float, delta, message)</strong><br />
assert_in_delta(100.0, price, 20.0, “Price should be between 80.00 and 120.00”)<br />
assert_in_delta(2, length, 1, “Length should be 1-3 feet.”)<br />
<strong><br />
assert_instance_of( klass, object, message )</strong><br />
assert_instance_of( User, person, “person should be an instance of User” )<br />
<strong><br />
assert_kind_of( klass, object, message )</strong><br />
assert_kind_of( User, person, “person should be a kind of User” )<br />
assert_kind_of( Class, User, “User should be a kind of Class” )<br />
<strong><br />
assert_respond_to( object, symbol, message )</strong><br />
Instances only respond to instance methods, classes only respond to class methods<br />
assert_respond_to( person, :full_name, “No response to full_name” )<br />
assert_respond_to( User, :custom_find, “No response to custom_find” )<br />
<strong><br />
assert_throws(expected_symbol, message) { block&#8230; }</strong><br />
assert_throws(:done, “Array should be empty”) { throw :done if [].empty? }<br />
<strong><br />
assert_nothing_thrown(message) { block&#8230; }</strong><br />
assert_nothing_thrown(“Array should not be empty”) { throw :done if [1].empty? }</p>
<p style="text-align: center;"><strong>Rare Assertions &amp; DEFAULT EROR MESSA GES</strong></p>
<p><strong>assert_same( expected, actual, message)</strong><br />
same as: assert_equal(expected, actual)<br />
assert_same( person.name, “John”)<br />
<strong><br />
assert_not_same( expected, actual, message)</strong><br />
same as: assert_not_equal(expected, actual)<br />
assert_not_same( person.name, “Mary”)<br />
<strong><br />
assert_operator( object1, operator, object2, message )</strong><br />
same as: assert( object1.operator(object2) )<br />
assert_operator( 1000, :&lt;, 2000, “Expected 1000 to be less than 2000” )<br />
assert_operator( user, <img src='http://www.igocoelho.com.br/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> ld_enough?, Time.now(), “User should be old enough”)<br />
<strong><br />
assert_send([receiver, symbol, arg1, arg2], message)</strong><br />
same as: assert( receiver.message(arg1, arg2) )<br />
assert_send([product, :decrement_inventory, qty], “Decrement should succeed”)</p>
<p>From: /activerecord/lib/active_record/validations.rb</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;">@@default_error_messages = <span style="color:#006600; font-weight:bold;">&#123;</span>
<span style="color:#ff3333; font-weight:bold;">:inclusion</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “is <span style="color:#9966CC; font-weight:bold;">not</span> included <span style="color:#9966CC; font-weight:bold;">in</span> the list”,
<span style="color:#ff3333; font-weight:bold;">:exclusion</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “is reserved”,
<span style="color:#ff3333; font-weight:bold;">:invalid</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “is invalid”,
<span style="color:#ff3333; font-weight:bold;">:confirmation</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “doesn’t match confirmation”,
<span style="color:#ff3333; font-weight:bold;">:accepted</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “must be accepted”,
<span style="color:#ff3333; font-weight:bold;">:empty</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “can’t be empty”,
<span style="color:#ff3333; font-weight:bold;">:blank</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “can’t be blank”,
<span style="color:#ff3333; font-weight:bold;">:too_long</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “is too long <span style="color:#006600; font-weight:bold;">&#40;</span>maximum is <span style="color:#006600; font-weight:bold;">%</span>d characters<span style="color:#006600; font-weight:bold;">&#41;</span>”,
<span style="color:#ff3333; font-weight:bold;">:too_short</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “is too short <span style="color:#006600; font-weight:bold;">&#40;</span>minimum is <span style="color:#006600; font-weight:bold;">%</span>d characters<span style="color:#006600; font-weight:bold;">&#41;</span>”,
<span style="color:#ff3333; font-weight:bold;">:wrong_length</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “is the wrong length <span style="color:#006600; font-weight:bold;">&#40;</span>should be <span style="color:#006600; font-weight:bold;">%</span>d characters<span style="color:#006600; font-weight:bold;">&#41;</span>”,
<span style="color:#ff3333; font-weight:bold;">:taken</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “has already been taken”,
<span style="color:#ff3333; font-weight:bold;">:not_a_number</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “is <span style="color:#9966CC; font-weight:bold;">not</span> a number”,
<span style="color:#ff3333; font-weight:bold;">:greater_than</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “must be greater than <span style="color:#006600; font-weight:bold;">%</span>d”,
<span style="color:#ff3333; font-weight:bold;">:greater_than_or_equal_to</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “must be greater than <span style="color:#9966CC; font-weight:bold;">or</span> equal to <span style="color:#006600; font-weight:bold;">%</span>d”,
<span style="color:#ff3333; font-weight:bold;">:equal_to</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “must be equal to <span style="color:#006600; font-weight:bold;">%</span>d”,
<span style="color:#ff3333; font-weight:bold;">:less_than</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “must be less than <span style="color:#006600; font-weight:bold;">%</span>d”,
<span style="color:#ff3333; font-weight:bold;">:less_than_or_equal_to</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “must be less than <span style="color:#9966CC; font-weight:bold;">or</span> equal to <span style="color:#006600; font-weight:bold;">%</span>d”,
<span style="color:#ff3333; font-weight:bold;">:odd</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “must be odd”,
<span style="color:#ff3333; font-weight:bold;">:even</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> “must be even”
<span style="color:#006600; font-weight:bold;">&#125;</span></pre></td></tr></table></div>

<p><strong>Referência:</strong><br />
<a href="http://www.nullislove.com/2008/02/20/testing-in-rails-part-10-assertions/" target="_blank"> http://www.nullislove.com/2008/02/20/testing-in-rails-part-10-assertions/</a></p>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;title=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions&amp;bodytext=Basic%20Assertions%0D%0Aassert%28boolean%2C%20message%29%0D%0Aassert%28person.name%20%3D%3D%20%E2%80%9CJohn%E2%80%9D%2C%20%E2%80%9CName%20was%20expected%20to%20be%20John.%E2%80%9D%29%0D%0Aassert%28item.errors.invalid%3F%28%3Aprice%29%29%0D%0Aassert_equal%28expected%2C%20actual%2C%20message%29%0D%0Aassert_equal%28person.name%2C%20%E2%80%9CJohn%E2%80%9D%2C%20%E2%80%9CName%20was%20expec" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;title=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions&amp;notes=Basic%20Assertions%0D%0Aassert%28boolean%2C%20message%29%0D%0Aassert%28person.name%20%3D%3D%20%E2%80%9CJohn%E2%80%9D%2C%20%E2%80%9CName%20was%20expected%20to%20be%20John.%E2%80%9D%29%0D%0Aassert%28item.errors.invalid%3F%28%3Aprice%29%29%0D%0Aassert_equal%28expected%2C%20actual%2C%20message%29%0D%0Aassert_equal%28person.name%2C%20%E2%80%9CJohn%E2%80%9D%2C%20%E2%80%9CName%20was%20expec" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;t=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;title=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;title=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions&amp;annotation=Basic%20Assertions%0D%0Aassert%28boolean%2C%20message%29%0D%0Aassert%28person.name%20%3D%3D%20%E2%80%9CJohn%E2%80%9D%2C%20%E2%80%9CName%20was%20expected%20to%20be%20John.%E2%80%9D%29%0D%0Aassert%28item.errors.invalid%3F%28%3Aprice%29%29%0D%0Aassert_equal%28expected%2C%20actual%2C%20message%29%0D%0Aassert_equal%28person.name%2C%20%E2%80%9CJohn%E2%80%9D%2C%20%E2%80%9CName%20was%20expec" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;title=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;title=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=Basic%20Assertions%0D%0Aassert%28boolean%2C%20message%29%0D%0Aassert%28person.name%20%3D%3D%20%E2%80%9CJohn%E2%80%9D%2C%20%E2%80%9CName%20was%20expected%20to%20be%20John.%E2%80%9D%29%0D%0Aassert%28item.errors.invalid%3F%28%3Aprice%29%29%0D%0Aassert_equal%28expected%2C%20actual%2C%20message%29%0D%0Aassert_equal%28person.name%2C%20%E2%80%9CJohn%E2%80%9D%2C%20%E2%80%9CName%20was%20expec" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;title=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F&amp;t=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Para%20n%C3%A3o%20esquecer%3A%20Ruby%20on%20Rails%20Unit%20Testing%20Assertions%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2010%2F02%2F27%2Fpara-nao-esquecer-ruby-on-rails-assertions%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2010/02/27/para-nao-esquecer-ruby-on-rails-assertions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A revista do futuro</title>
		<link>http://www.igocoelho.com.br/2009/12/18/a-revista-do-futuro/</link>
		<comments>http://www.igocoelho.com.br/2009/12/18/a-revista-do-futuro/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 11:46:28 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Diversos]]></category>
		<category><![CDATA[Revista]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=179</guid>
		<description><![CDATA[Colocando em dia hoje a minha leitura de feeds no Google Reader achei esse vídeo que traz uma ideia sobre o futuro das revistas no Lifehacker. Mag+ from Bonnier on Vimeo. Podemos ver que a Mag+ lança um novo olhar sobre o que as revistas do futuro podem se parecer. Clique aqui e confira o [...]]]></description>
			<content:encoded><![CDATA[<p>Colocando em dia hoje a minha leitura de feeds no <a href="http://reader.google.com/" target="_blank">Google Reader</a> achei esse vídeo que traz uma ideia sobre o futuro das revistas no <a href="http://lifehacker.com/" target="_blank">Lifehacker</a>.</p>
<p><object width="400" height="225" data="http://vimeo.com/moogaloop.swf?clip_id=8217311&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8217311&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /></object></p>
<p><a href="http://vimeo.com/8217311">Mag+</a> from <a href="http://vimeo.com/bonnier">Bonnier</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><span id="result_box" class="long_text"><span style="background-color: #ffffff;" title="Mag+ takes a look at what magazines of the future may look like, Firefox nightly builds come with Chrome-like multi-process separation, and it may be time for a new approach with your stale old resume.">Podemos ver que a Mag+ lança um novo olhar sobre o que as revistas do futuro podem se parecer.</span></span></p>
<p><span class="long_text"><span style="background-color: #ffffff;" title="Mag+ takes a look at what magazines of the future may look like, Firefox nightly builds come with Chrome-like multi-process separation, and it may be time for a new approach with your stale old resume."><a href="http://lifehacker.com/5429068/remains-of-the-day-the-magazine-of-the-future-edition" target="_blank">Clique aqui</a> e confira o post no Lifehacker.<br />
</span></span></p>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;title=A%20revista%20do%20futuro&amp;bodytext=Colocando%20em%20dia%20hoje%20a%20minha%20leitura%20de%20feeds%20no%20Google%20Reader%20achei%20esse%20v%C3%ADdeo%20que%20traz%20uma%20ideia%20sobre%20o%20futuro%20das%20revistas%20no%20Lifehacker.%0D%0A%0D%0A%0D%0A%0D%0AMag%2B%20from%20Bonnier%20on%20Vimeo.%0D%0A%0D%0APodemos%20ver%20que%20a%20Mag%2B%20lan%C3%A7a%20um%20novo%20olhar%20sobre%20o%20que%20as%20revistas%20" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;title=A%20revista%20do%20futuro&amp;notes=Colocando%20em%20dia%20hoje%20a%20minha%20leitura%20de%20feeds%20no%20Google%20Reader%20achei%20esse%20v%C3%ADdeo%20que%20traz%20uma%20ideia%20sobre%20o%20futuro%20das%20revistas%20no%20Lifehacker.%0D%0A%0D%0A%0D%0A%0D%0AMag%2B%20from%20Bonnier%20on%20Vimeo.%0D%0A%0D%0APodemos%20ver%20que%20a%20Mag%2B%20lan%C3%A7a%20um%20novo%20olhar%20sobre%20o%20que%20as%20revistas%20" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;t=A%20revista%20do%20futuro" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;title=A%20revista%20do%20futuro" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;title=A%20revista%20do%20futuro&amp;annotation=Colocando%20em%20dia%20hoje%20a%20minha%20leitura%20de%20feeds%20no%20Google%20Reader%20achei%20esse%20v%C3%ADdeo%20que%20traz%20uma%20ideia%20sobre%20o%20futuro%20das%20revistas%20no%20Lifehacker.%0D%0A%0D%0A%0D%0A%0D%0AMag%2B%20from%20Bonnier%20on%20Vimeo.%0D%0A%0D%0APodemos%20ver%20que%20a%20Mag%2B%20lan%C3%A7a%20um%20novo%20olhar%20sobre%20o%20que%20as%20revistas%20" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;title=A%20revista%20do%20futuro" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;title=A%20revista%20do%20futuro&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=Colocando%20em%20dia%20hoje%20a%20minha%20leitura%20de%20feeds%20no%20Google%20Reader%20achei%20esse%20v%C3%ADdeo%20que%20traz%20uma%20ideia%20sobre%20o%20futuro%20das%20revistas%20no%20Lifehacker.%0D%0A%0D%0A%0D%0A%0D%0AMag%2B%20from%20Bonnier%20on%20Vimeo.%0D%0A%0D%0APodemos%20ver%20que%20a%20Mag%2B%20lan%C3%A7a%20um%20novo%20olhar%20sobre%20o%20que%20as%20revistas%20" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;title=A%20revista%20do%20futuro" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F&amp;t=A%20revista%20do%20futuro" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=A%20revista%20do%20futuro&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=A%20revista%20do%20futuro&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=A%20revista%20do%20futuro%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F12%2F18%2Fa-revista-do-futuro%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2009/12/18/a-revista-do-futuro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maré de Agilidade com Açaí</title>
		<link>http://www.igocoelho.com.br/2009/11/21/mare-de-agilidade-com-acai/</link>
		<comments>http://www.igocoelho.com.br/2009/11/21/mare-de-agilidade-com-acai/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 23:55:42 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Eventos]]></category>
		<category><![CDATA[Ágil]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=177</guid>
		<description><![CDATA[Texto produzido pelo grupo Tá Safo! Para quem ainda não sabe do que se trata , o Maré de Agilidade é um evento itinerante que viaja pelas cidades do Brasil, apresentado assuntos como Extreme Programming (XP), Scrum, Domain Driven Design (DDD), Model Driven Design (MDD), Test-driven Development (TDD), Feature-driven Development (FDD), Gerenciamento Ágil de Projetos [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<h4><em>Texto produzido pelo grupo <a href="http://tasafo.wordpress.com/">Tá Safo!</a></em></h4>
<p style="text-align: justify;">Para quem ainda não sabe do que se trata , o <strong>Maré de Agilidade</strong> é um evento itinerante que viaja pelas cidades do Brasil, apresentado assuntos como Extreme Programming (XP), Scrum, Domain Driven Design (DDD), Model Driven Design (MDD), Test-driven Development (TDD), Feature-driven Development (FDD), Gerenciamento Ágil de Projetos (GAP), Lean, e tantos outros. Esses assuntos começam a fazer parte do vocabulário do desenvolvedor de software, no entanto muitas vezes sem a devida capacitação para entendimento e aplicação de tantos conceitos.</p>
<p style="text-align: justify;">Como as ondas de uma maré, o evento já passou por <strong>Brasília </strong>(setembro/2008 − 1° edição); <strong>Salvador </strong>(março/2009 − 2° edição) e <strong>Fortaleza </strong>(agosto/2009 − 3° edição).</p>
<p style="text-align: justify;">Agora em sua <strong>4° edição</strong> chegou a vez de <strong>Belém</strong>, para falar das novas tendências em gerência de projetos e técnicas de desenvolvimento de software que constituem atualmente o grande diferencial de empresas como Apple, Google, Microsoft, Yahoo e Globo.com.</p>
<p style="text-align: justify;">O evento está programado para os dias <strong>26, 27 e 28 de Novembro de 2009</strong>, sendo os 2 primeiros dias de mini-cursos, sessões de Dojo e OpenSpace. O 3° dia reservado para palestras e discussões.</p>
<p style="text-align: justify;">Acesse o site do evento: <a href="http://www.maredeagilidade.com.br/" target="_blank">www.maredeagilidade.com.br</a></p>
<p style="text-align: center;"><a href="http://www.maredeagilidade.com.br/"><img class="aligncenter" title="Maré de Agilidade - Belém" src="http://tasafo.files.wordpress.com/2009/11/banner_mare_belem.png?w=450&amp;h=101&amp;h=101" alt="Maré de Agilidade - Belém" width="450" height="101" /></a></p>
</div>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;title=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD&amp;bodytext=%0D%0ATexto%20produzido%20pelo%20grupo%20T%C3%A1%20Safo%21%0D%0APara%20quem%20ainda%20n%C3%A3o%20sabe%20do%20que%20se%20trata%20%2C%20o%20Mar%C3%A9%20de%20Agilidade%20%C3%A9%20um%20evento%20itinerante%20que%20viaja%20pelas%20cidades%20do%20Brasil%2C%20apresentado%20assuntos%20como%20Extreme%20Programming%20%28XP%29%2C%20Scrum%2C%20Domain%20Driven%20Design%20%28DDD%29%2C" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;title=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD&amp;notes=%0D%0ATexto%20produzido%20pelo%20grupo%20T%C3%A1%20Safo%21%0D%0APara%20quem%20ainda%20n%C3%A3o%20sabe%20do%20que%20se%20trata%20%2C%20o%20Mar%C3%A9%20de%20Agilidade%20%C3%A9%20um%20evento%20itinerante%20que%20viaja%20pelas%20cidades%20do%20Brasil%2C%20apresentado%20assuntos%20como%20Extreme%20Programming%20%28XP%29%2C%20Scrum%2C%20Domain%20Driven%20Design%20%28DDD%29%2C" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;t=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;title=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;title=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD&amp;annotation=%0D%0ATexto%20produzido%20pelo%20grupo%20T%C3%A1%20Safo%21%0D%0APara%20quem%20ainda%20n%C3%A3o%20sabe%20do%20que%20se%20trata%20%2C%20o%20Mar%C3%A9%20de%20Agilidade%20%C3%A9%20um%20evento%20itinerante%20que%20viaja%20pelas%20cidades%20do%20Brasil%2C%20apresentado%20assuntos%20como%20Extreme%20Programming%20%28XP%29%2C%20Scrum%2C%20Domain%20Driven%20Design%20%28DDD%29%2C" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;title=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;title=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=%0D%0ATexto%20produzido%20pelo%20grupo%20T%C3%A1%20Safo%21%0D%0APara%20quem%20ainda%20n%C3%A3o%20sabe%20do%20que%20se%20trata%20%2C%20o%20Mar%C3%A9%20de%20Agilidade%20%C3%A9%20um%20evento%20itinerante%20que%20viaja%20pelas%20cidades%20do%20Brasil%2C%20apresentado%20assuntos%20como%20Extreme%20Programming%20%28XP%29%2C%20Scrum%2C%20Domain%20Driven%20Design%20%28DDD%29%2C" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;title=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F&amp;t=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Mar%C3%A9%20de%20Agilidade%20com%20A%C3%A7a%C3%AD%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F11%2F21%2Fmare-de-agilidade-com-acai%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2009/11/21/mare-de-agilidade-com-acai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Novos desafios</title>
		<link>http://www.igocoelho.com.br/2009/10/21/novos-desafios/</link>
		<comments>http://www.igocoelho.com.br/2009/10/21/novos-desafios/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 17:25:18 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=170</guid>
		<description><![CDATA[Sei que o blog anda desatualizado já a um tempo&#8230; para ser mais preciso, desde o Maré de Agilidade Nesse meio tempo muita coisa aconteceu&#8230; vou tentar falar aqui em poucas palavras um pouco de tudo. Não trabalho mais na Fortes Informática e agora estou na UNIFOR. Realizamos um evento na UNIFOR pela JavaCE com [...]]]></description>
			<content:encoded><![CDATA[<p>Sei que o blog anda desatualizado já a um tempo&#8230; para ser mais preciso, desde o <a href="http://www.maredeagilidade.com.br/" target="_blank">Maré de Agilidade</a> <img src='http://www.igocoelho.com.br/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Nesse meio tempo muita coisa aconteceu&#8230; vou tentar falar aqui em poucas palavras um pouco de tudo. Não trabalho mais na <a href="http://www.fortesinformatica.com.br" target="_blank">Fortes Informática</a> e agora estou na <a href="http://www.unifor.br" target="_blank">UNIFOR</a>. Realizamos um <a href="http://www.javace.org/resultado-do-primeiro-encontro/" target="_blank">evento</a> na <a href="http://www.unifor.br" target="_blank">UNIFOR</a> pela <a href="http://www.javace.org">JavaCE</a> com o <a href="http://www.claudius.com.br" target="_blank">Claudio Miranda</a>. Participei do <a href="http://www.indexti.com/inscricoes" target="_blank">Agile na Pratica</a> da <a href="http://www.indexti.com" target="_blank">IndexTI</a> em Salvador.</p>
<p>Quero dar um destaque especial a minha saída da <a href="http://www.fortesinformatica.com.br" target="_blank">Fortes</a>. Trabalhei lá por quase 5 anos e foi uma experiência muito boa onde aprendi muita coisa e fiz vários amigos. Sai de lá com a certeza que aprendi muito e triste de deixar alguns amigos para trás!</p>
<p>Enfim, é isso, retomada do blog, trabalho novo e novos desafios!</p>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;title=Novos%20desafios&amp;bodytext=Sei%20que%20o%20blog%20anda%20desatualizado%20j%C3%A1%20a%20um%20tempo...%20para%20ser%20mais%20preciso%2C%20desde%20o%20Mar%C3%A9%20de%20Agilidade%20%3A-%28%0D%0A%0D%0ANesse%20meio%20tempo%20muita%20coisa%20aconteceu...%20vou%20tentar%20falar%20aqui%20em%20poucas%20palavras%20um%20pouco%20de%20tudo.%20N%C3%A3o%20trabalho%20mais%20na%20Fortes%20Inform%C3%A1tic" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;title=Novos%20desafios&amp;notes=Sei%20que%20o%20blog%20anda%20desatualizado%20j%C3%A1%20a%20um%20tempo...%20para%20ser%20mais%20preciso%2C%20desde%20o%20Mar%C3%A9%20de%20Agilidade%20%3A-%28%0D%0A%0D%0ANesse%20meio%20tempo%20muita%20coisa%20aconteceu...%20vou%20tentar%20falar%20aqui%20em%20poucas%20palavras%20um%20pouco%20de%20tudo.%20N%C3%A3o%20trabalho%20mais%20na%20Fortes%20Inform%C3%A1tic" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;t=Novos%20desafios" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;title=Novos%20desafios" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;title=Novos%20desafios&amp;annotation=Sei%20que%20o%20blog%20anda%20desatualizado%20j%C3%A1%20a%20um%20tempo...%20para%20ser%20mais%20preciso%2C%20desde%20o%20Mar%C3%A9%20de%20Agilidade%20%3A-%28%0D%0A%0D%0ANesse%20meio%20tempo%20muita%20coisa%20aconteceu...%20vou%20tentar%20falar%20aqui%20em%20poucas%20palavras%20um%20pouco%20de%20tudo.%20N%C3%A3o%20trabalho%20mais%20na%20Fortes%20Inform%C3%A1tic" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;title=Novos%20desafios" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;title=Novos%20desafios&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=Sei%20que%20o%20blog%20anda%20desatualizado%20j%C3%A1%20a%20um%20tempo...%20para%20ser%20mais%20preciso%2C%20desde%20o%20Mar%C3%A9%20de%20Agilidade%20%3A-%28%0D%0A%0D%0ANesse%20meio%20tempo%20muita%20coisa%20aconteceu...%20vou%20tentar%20falar%20aqui%20em%20poucas%20palavras%20um%20pouco%20de%20tudo.%20N%C3%A3o%20trabalho%20mais%20na%20Fortes%20Inform%C3%A1tic" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;title=Novos%20desafios" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F&amp;t=Novos%20desafios" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Novos%20desafios&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Novos%20desafios&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Novos%20desafios%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F10%2F21%2Fnovos-desafios%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2009/10/21/novos-desafios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Promoção para o Maré de Agilidade</title>
		<link>http://www.igocoelho.com.br/2009/07/14/promocao-para-o-mare-de-agilidade/</link>
		<comments>http://www.igocoelho.com.br/2009/07/14/promocao-para-o-mare-de-agilidade/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 19:53:36 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Eventos]]></category>
		<category><![CDATA[XPCE]]></category>
		<category><![CDATA[Ágil]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=168</guid>
		<description><![CDATA[É com grande prazer que estamos anunciando a redução temporária dos valores de inscrição nas palestras. Isso está sendo possível devido aos patrocínios das empresas AdaptWorks, Caelum, E-novar e iFactory que são patrocinadores ouro, IVIA com prata e TriadWorks com bronze, as quais somos muito gratos. Como o objetivo do Maré de Agilidade é disseminar [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<p><!-- end postmeta --> <!-- end title --></p>
<div class="entry">
<p><a href="http://www.maredeagilidade.com.br/" target="_blank"><img class="aligncenter" title="Maré de Agilidade" src="../wp-content/uploads/2009/05/mare_agilidade.jpeg" alt="" width="425" height="113" /></a>É com grande prazer que estamos anunciando a redução temporária dos valores de inscrição nas palestras. Isso está sendo possível devido aos patrocínios das empresas AdaptWorks, Caelum, E-novar e iFactory que são patrocinadores ouro, IVIA com prata e TriadWorks com bronze, as quais somos muito gratos.</p>
<p>Como o objetivo do Maré de Agilidade é disseminar e compartilhar conhecimento sobre Métodos Ágeis e não o lucro, estando parte dos custos sendo coberto pelos patrocínios, estamos reduzindo até o dia 24/07 em 50% os valores das inscrições para palestras. Os valores temporários são:</p>
<p>Estudante: R$ 40,00<br />
Membro do XPCE: R$ 50,00<br />
Outros: R$ 60,00</p>
<p><em>Obs.:<br />
Aqueles que já efetuaram o pagamento do dia de palestras no valor antigo receberão a diferença de volta.</em></p>
<div>
<p>Programação detalhada, inscrições e mais informações em: <a href="http://www.maredeagilidade.com.br/" target="_blank">www.maredeagilidade.com</a></p>
<p><strong>Patrocinadores:</strong><br />
Ouro<br />
<img class="alignnone" title="AdaptWorks" src="http://www.maredeagilidade.com.br/img/adaptworks.png" alt="" width="115" height="60" /> <img class="alignnone" title="Caelum" src="http://www.maredeagilidade.com.br/img/caelum.jpg" alt="" width="153" height="42" /> <img class="alignnone size-full wp-image-166" title="enovar" src="../wp-content/uploads/2009/07/enovar.jpg" alt="enovar" /> <img class="alignnone size-full wp-image-165" title="ifactory" src="../wp-content/uploads/2009/07/ifactory.jpg" alt="ifactory" /></p>
<p>Prata<br />
<img class="alignnone" title="IVIA" src="http://www.maredeagilidade.com.br/img/ivia.jpg" alt="" width="90" height="25" /></p>
<p>Bronze<br />
<img class="alignnone" title="TriadWorks" src="http://www.maredeagilidade.com.br/img/triad.png" alt="" width="90" height="63" /></p>
<p><strong><br />
Realização e Organização:</strong><br />
<img class="alignnone" title="XPCE" src="http://www.maredeagilidade.com.br/img/xpce.png" alt="" width="107" height="118" /> <img class="alignnone" title="Fortes Treinamentos" src="http://www.maredeagilidade.com.br/img/fortes.gif" alt="" width="68" height="81" /><br />
<img class="alignnone" title="SEA" src="http://www.maredeagilidade.com.br/img/org_sea.png" alt="" width="79" height="63" /> <img class="alignnone" title="Visão Ágil" src="http://www.maredeagilidade.com.br/img/VisaoAgil.png" alt="" width="140" height="37" /> <img class="alignnone" title="JavaBahia" src="http://www.maredeagilidade.com.br/img/JavaBahia.png" alt="" width="90" height="82" /></p>
<p><strong><br />
Apoio:</strong><br />
<img class="alignnone" title="FA7" src="http://www.maredeagilidade.com.br/img/fa7.jpg" alt="" width="98" height="91" /></div>
</div>
</div>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;title=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade&amp;bodytext=%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%C3%89%20com%20grande%20prazer%20que%20estamos%20anunciando%20a%20redu%C3%A7%C3%A3o%20tempor%C3%A1ria%20dos%20valores%20de%20inscri%C3%A7%C3%A3o%20nas%20palestras.%20Isso%20est%C3%A1%20sendo%20poss%C3%ADvel%20devido%20aos%20patroc%C3%ADnios%20das%20empresas%20AdaptWorks%2C%20Caelum%2C%20E-novar%20e%20iFactory%20que%20s%C3%A3o%20patrocinadores%20ou" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;title=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade&amp;notes=%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%C3%89%20com%20grande%20prazer%20que%20estamos%20anunciando%20a%20redu%C3%A7%C3%A3o%20tempor%C3%A1ria%20dos%20valores%20de%20inscri%C3%A7%C3%A3o%20nas%20palestras.%20Isso%20est%C3%A1%20sendo%20poss%C3%ADvel%20devido%20aos%20patroc%C3%ADnios%20das%20empresas%20AdaptWorks%2C%20Caelum%2C%20E-novar%20e%20iFactory%20que%20s%C3%A3o%20patrocinadores%20ou" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;t=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;title=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;title=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade&amp;annotation=%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%C3%89%20com%20grande%20prazer%20que%20estamos%20anunciando%20a%20redu%C3%A7%C3%A3o%20tempor%C3%A1ria%20dos%20valores%20de%20inscri%C3%A7%C3%A3o%20nas%20palestras.%20Isso%20est%C3%A1%20sendo%20poss%C3%ADvel%20devido%20aos%20patroc%C3%ADnios%20das%20empresas%20AdaptWorks%2C%20Caelum%2C%20E-novar%20e%20iFactory%20que%20s%C3%A3o%20patrocinadores%20ou" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;title=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;title=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%C3%89%20com%20grande%20prazer%20que%20estamos%20anunciando%20a%20redu%C3%A7%C3%A3o%20tempor%C3%A1ria%20dos%20valores%20de%20inscri%C3%A7%C3%A3o%20nas%20palestras.%20Isso%20est%C3%A1%20sendo%20poss%C3%ADvel%20devido%20aos%20patroc%C3%ADnios%20das%20empresas%20AdaptWorks%2C%20Caelum%2C%20E-novar%20e%20iFactory%20que%20s%C3%A3o%20patrocinadores%20ou" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;title=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F&amp;t=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Promo%C3%A7%C3%A3o%20para%20o%20Mar%C3%A9%20de%20Agilidade%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F14%2Fpromocao-para-o-mare-de-agilidade%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2009/07/14/promocao-para-o-mare-de-agilidade/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convite para o Maré de Agilidade Fortaleza</title>
		<link>http://www.igocoelho.com.br/2009/07/01/convite-para-o-mare-de-agilidade-fortaleza/</link>
		<comments>http://www.igocoelho.com.br/2009/07/01/convite-para-o-mare-de-agilidade-fortaleza/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 03:02:09 +0000</pubDate>
		<dc:creator>igocoelho</dc:creator>
				<category><![CDATA[Eventos]]></category>
		<category><![CDATA[XPCE]]></category>
		<category><![CDATA[Ágil]]></category>

		<guid isPermaLink="false">http://www.igocoelho.com.br/?p=157</guid>
		<description><![CDATA[Maré de Agilidade &#8211; 3a edição &#8211; Swell Fortaleza &#8211; 06, 07, 08 e 10/08/2009 O grupo XPCE(eXtreme Programming Ceará) junto com a Fortes Treinamentos traz a Fortaleza a terceira edição do evento Maré de Agilidade, com a organização da SEA Tecnologia, Revista Visão Ágil, Java Bahia e apoio da FA7(Faculdade 7 de Setembro). A [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.maredeagilidade.com.br/" target="_blank"><img class="aligncenter" title="Maré de Agilidade" src="../wp-content/uploads/2009/05/mare_agilidade.jpeg" alt="" width="425" height="113" /></a></p>
<p><strong>Maré de Agilidade &#8211; 3a edição &#8211; Swell Fortaleza &#8211; 06, 07, 08 e 10/08/2009</strong></p>
<p>O grupo <a href="http://www.xpce.org/2009/06/30/" target="_blank">XPCE</a>(eXtreme Programming Ceará) junto com a <a href="http://www.fortestreinamentos.com.br/" target="_blank">Fortes Treinamentos</a> traz a Fortaleza a terceira edição do evento Maré de Agilidade, com a organização da <a href="http://www.seatecnologia.com.br/" target="_blank">SEA Tecnologia</a>, <a href="http://www.visaoagil.com/" target="_blank">Revista Visão Ágil</a>, <a href="http://javabahia.blogspot.com/" target="_blank">Java Bahia</a> e apoio da <a href="http://www.fa7.edu.br/" target="_blank">FA7</a>(Faculdade 7 de Setembro). A primeira edição desse evento ocorreu em setembro de 2008 em Brasília e a segunda em março de 2009 em Salvador.</p>
<p>O evento visa promover três dias de mini-cursos e um dia de palestras e discussões sobre as novas tendências em gerência de projetos e técnicas de desenvolvimento de software que constituem atualmente o grande diferencial de empresas como Apple, Google, Microsoft, Yahoo e Globo.com.</p>
<p><strong>Mini-cursos:</strong><br />
<strong>06/08 -</strong> Gerenciamento Ágil de Projetos com Scrum, eXtreme Programming (XP) na prática e Desenvolvimento web ágil com RubyOnRails<strong><br />
07/08 -</strong> Gestão Ágil de Requisitos, eXtreme Programming (XP) na prática e Teste de aplicações Rails<br />
<strong>10/08 -</strong> Planejamento e estimativas em projetos ágeis</p>
<div>
<p><strong>Palestras:</strong><br />
<strong>08/08 -</strong> Manifesto 2.0, Gestão Lean para desenvolvimento de Software, A Agilidade está no ar, “Sou ágil, logo não planejo!”, Governança no desenvolvimento ágil, Onde mora a produtividade do Ruby on Rails?, Painel com todos os palestrantes: Agile na Real &#8211; Interoperabilidade, Mix e Adaptações</p>
<p><strong>Local:</strong><br />
Mini-cursos dias 06 e 07: Fortes Treinamentos [<a href="http://maps.google.com.br/maps?f=l&amp;source=s_q&amp;hl=pt-BR&amp;geocode=&amp;q=Rua+Ant%C3%B4nio+Fortes+330+%C3%81gua+Fria&amp;sll=-12.897489,-50.449219&amp;sspn=72.916045,111.972656&amp;ie=UTF8&amp;near=Fortaleza+-+CE&amp;ll=-3.777223,-38.480623&amp;spn=0.009763,0.013669&amp;t=h&amp;z=16&amp;iwloc=A" target="_blank">veja o mapa</a>]<br />
Palestras dia 08: Faculdade 7 de Setembro [<a href="http://maps.google.com.br/maps?f=q&amp;source=s_q&amp;hl=pt-BR&amp;geocode=&amp;q=Faculdade+7+de+setembro&amp;sll=-3.777223,-38.480623&amp;sspn=0.009763,0.013669&amp;ie=UTF8&amp;ll=-3.768851,-38.481481&amp;spn=0.009764,0.013669&amp;t=h&amp;z=16&amp;iwloc=A" target="_blank">veja o mapa</a>]<br />
Mini-curso dia 10: CGDT [<a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=pt-BR&amp;geocode=&amp;q=Av.+Oliveira+Paiva+941+Cidade+dos+Funcion%C3%A1rios+Fortaleza+Cear%C3%A1&amp;sll=37.09024,-95.712891&amp;sspn=33.572881,57.919922&amp;ie=UTF8&amp;ll=-3.79523,-38.497145&amp;spn=0.01032,0.014141&amp;t=h&amp;z=16&amp;iwloc=A" target="_blank">veja o mapa</a>]</p>
<p><strong>Inscrições:</strong><br />
- Com desconto até 15/07 &#8211; Preços promocionais para estudantes e membros do XPCE.<br />
- As inscrições para o mini-curso “Planejamento e estimativas em projetos ágeis” são de responsabilidade da AdaptWorks. Contato pelo fone (11)5585-7738 ou pelo email contato@adaptworks.com.br</p>
<p>Programação detalhada, inscrições e mais informações em: <a href="http://www.maredeagilidade.com.br/" target="_blank">www.maredeagilidade.com</a></p>
<p><strong>Patrocinadores:</strong><br />
Ouro<br />
<img class="alignnone" title="AdaptWorks" src="http://www.maredeagilidade.com.br/img/adaptworks.png" alt="" width="115" height="60" /> <img class="alignnone" title="Caelum" src="http://www.maredeagilidade.com.br/img/caelum.jpg" alt="" width="153" height="42" /> <img class="alignnone size-full wp-image-166" title="enovar" src="http://www.igocoelho.com.br/wp-content/uploads/2009/07/enovar.jpg" alt="enovar" /> <img class="alignnone size-full wp-image-165" title="ifactory" src="http://www.igocoelho.com.br/wp-content/uploads/2009/07/ifactory.jpg" alt="ifactory" /></p>
<p>Prata<br />
<img class="alignnone" title="IVIA" src="http://www.maredeagilidade.com.br/img/ivia.jpg" alt="" width="90" height="25" /></p>
<p>Bronze<br />
<img class="alignnone" title="TriadWorks" src="http://www.maredeagilidade.com.br/img/triad.png" alt="" width="90" height="63" /></p>
<p><strong><br />
Realização e Organização:</strong><br />
<img class="alignnone" title="XPCE" src="http://www.maredeagilidade.com.br/img/xpce.png" alt="" width="107" height="118" /> <img class="alignnone" title="Fortes Treinamentos" src="http://www.maredeagilidade.com.br/img/fortes.gif" alt="" width="68" height="81" /><br />
<img class="alignnone" title="SEA" src="http://www.maredeagilidade.com.br/img/org_sea.png" alt="" width="79" height="63" /> <img class="alignnone" title="Visão Ágil" src="http://www.maredeagilidade.com.br/img/VisaoAgil.png" alt="" width="140" height="37" /> <img class="alignnone" title="JavaBahia" src="http://www.maredeagilidade.com.br/img/JavaBahia.png" alt="" width="90" height="82" /></p>
<p><strong><br />
Apoio:</strong><br />
<img class="alignnone" title="FA7" src="http://www.maredeagilidade.com.br/img/fa7.jpg" alt="" width="98" height="91" /></div>



Compartilhe


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;partner=sociable" title="Print"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;title=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza&amp;bodytext=%0D%0A%0D%0AMar%C3%A9%20de%20Agilidade%20-%203a%20edi%C3%A7%C3%A3o%20-%20Swell%20Fortaleza%20-%2006%2C%2007%2C%2008%20e%2010%2F08%2F2009%0D%0A%0D%0AO%20grupo%20XPCE%28eXtreme%20Programming%20Cear%C3%A1%29%20junto%20com%20a%20Fortes%20Treinamentos%20traz%20a%20Fortaleza%20a%20terceira%20edi%C3%A7%C3%A3o%20do%20evento%20Mar%C3%A9%20de%20Agilidade%2C%20com%20a%20organiza%C3%A7%C3%A3o%20da%20SEA" title="Digg"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F" title="Sphinn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;title=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza&amp;notes=%0D%0A%0D%0AMar%C3%A9%20de%20Agilidade%20-%203a%20edi%C3%A7%C3%A3o%20-%20Swell%20Fortaleza%20-%2006%2C%2007%2C%2008%20e%2010%2F08%2F2009%0D%0A%0D%0AO%20grupo%20XPCE%28eXtreme%20Programming%20Cear%C3%A1%29%20junto%20com%20a%20Fortes%20Treinamentos%20traz%20a%20Fortaleza%20a%20terceira%20edi%C3%A7%C3%A3o%20do%20evento%20Mar%C3%A9%20de%20Agilidade%2C%20com%20a%20organiza%C3%A7%C3%A3o%20da%20SEA" title="del.icio.us"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;t=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza" title="Facebook"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;title=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza" title="Mixx"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;title=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza&amp;annotation=%0D%0A%0D%0AMar%C3%A9%20de%20Agilidade%20-%203a%20edi%C3%A7%C3%A3o%20-%20Swell%20Fortaleza%20-%2006%2C%2007%2C%2008%20e%2010%2F08%2F2009%0D%0A%0D%0AO%20grupo%20XPCE%28eXtreme%20Programming%20Cear%C3%A1%29%20junto%20com%20a%20Fortes%20Treinamentos%20traz%20a%20Fortaleza%20a%20terceira%20edi%C3%A7%C3%A3o%20do%20evento%20Mar%C3%A9%20de%20Agilidade%2C%20com%20a%20organiza%C3%A7%C3%A3o%20da%20SEA" title="Google Bookmarks"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;title=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza" title="DZone"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;title=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza&amp;source=Igo+Coelho+Meus+pensamentos+sobre+muitas+coisas...&amp;summary=%0D%0A%0D%0AMar%C3%A9%20de%20Agilidade%20-%203a%20edi%C3%A7%C3%A3o%20-%20Swell%20Fortaleza%20-%2006%2C%2007%2C%2008%20e%2010%2F08%2F2009%0D%0A%0D%0AO%20grupo%20XPCE%28eXtreme%20Programming%20Cear%C3%A1%29%20junto%20com%20a%20Fortes%20Treinamentos%20traz%20a%20Fortaleza%20a%20terceira%20edi%C3%A7%C3%A3o%20do%20evento%20Mar%C3%A9%20de%20Agilidade%2C%20com%20a%20organiza%C3%A7%C3%A3o%20da%20SEA" title="LinkedIn"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;title=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza" title="Live"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F&amp;t=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza" title="MySpace"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.igocoelho.com.br/feed/" title="RSS"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza&amp;body=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F" title="email"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza&amp;link=http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F" title="FriendFeed"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Convite%20para%20o%20Mar%C3%A9%20de%20Agilidade%20Fortaleza%20-%20http%3A%2F%2Fwww.igocoelho.com.br%2F2009%2F07%2F01%2Fconvite-para-o-mare-de-agilidade-fortaleza%2F" title="Twitter"><img src="http://www.igocoelho.com.br/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.igocoelho.com.br/2009/07/01/convite-para-o-mare-de-agilidade-fortaleza/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.700 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-02 18:27:15 -->
