summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Mota <josemota.net@gmail.com>2012-04-07 14:57:17 +0100
committerJosé Mota <josemota.net@gmail.com>2012-04-07 14:57:21 +0100
commitf19acf7cb354ca8a7e3d8095cae26914f12e5f58 (patch)
tree6590e1d4462372d69f753f2f9b0019fd3d811ca4
parent2101a89a4636ee034c09bea0b01904abd6485b1b (diff)
Convert JRuby post to markdown.
-rw-r--r--_posts/2011-10-20-going-for-jruby.html40
-rw-r--r--_posts/2011-10-20-going-for-jruby.markdown49
2 files changed, 49 insertions, 40 deletions
diff --git a/_posts/2011-10-20-going-for-jruby.html b/_posts/2011-10-20-going-for-jruby.html
deleted file mode 100644
index f50a884..0000000
--- a/_posts/2011-10-20-going-for-jruby.html
+++ /dev/null
@@ -1,40 +0,0 @@
----
-layout: post
-title: Going for JRuby
-tags:
-- Development
-status: publish
-type: post
-published: true
-meta:
- _edit_last: '1'
----
-The company I work for uses Java for all of its projects. Based on that, I have been considering looking into JRuby and giving it a try. Every piece of advice is greatly appreciated.
-
-<!--more-->
-<h3>Context</h3>
-I play the Interaction Designer role and digging deeper to Struts and Java servlets, more than just HTML/CSS/jQuery, is becoming quite the challenge. I happen to love Rails and would love to try it out. My main goals are:
-<ol>
- <li>Take advantage of Rails' controllers, routes and views;</li>
- <li>Use Haml with Markdown and Sass with Compass;</li>
- <li>Take advantage of REST.</li>
- <li>Finally use Rspec and inject some proper testing and specification practices.</li>
-</ol>
-All of this while the rest of the team can still code the models (aka the business logic) the way they prefer. I think it's a good cause and it's a great opportunity to improve development happiness and systems integration.
-<h3>The challenge</h3>
-Here is a list of the things I know:
-<ol>
- <li>I can use <a href="http://rvm.beginrescueend.com">RVM</a> to quickly install and use JRuby.</li>
- <li>Gems with C extensions are a bit difficult to use inside the JVM.</li>
- <li>There are alternative gems to the ones above.</li>
-</ol>
-I also need to get in touch with these concepts:
-<ul>
- <li>Web application development in Java: .jar's, war's, etc.</li>
- <li><a href="http://tomcat.apache.org">Tomcat</a> or <a href="http://glassfish.java.net">Glassfish</a> as servers.</li>
- <li>Importing Java code into a Rails or Sinatra app.</li>
- <li>(optional) Using Ruby code from Java.</li>
-</ul>
-I guess the main question would be: <em>Where do I start?</em> What am I supposed to know to begin developing some sort of Rails app, using it under Tomcat or Glassfish and reusing Java code from the rest of the team? Thanks for helping me, guys!
-
-&nbsp;
diff --git a/_posts/2011-10-20-going-for-jruby.markdown b/_posts/2011-10-20-going-for-jruby.markdown
new file mode 100644
index 0000000..51b1589
--- /dev/null
+++ b/_posts/2011-10-20-going-for-jruby.markdown
@@ -0,0 +1,49 @@
+---
+layout: post
+title: Going for JRuby
+tags: [ development, ruby ]
+published: true
+---
+
+The company I work for uses Java for all of its projects. Based on that, I have
+been considering looking into JRuby and giving it a try. Every piece of advice
+is greatly appreciated.
+
+Context
+-------
+
+I play the Interaction Designer role and digging deeper to Struts and Java
+servlets, more than just HTML/CSS/jQuery, is becoming quite the challenge. I
+happen to love Rails and would love to try it out. My main goals are:
+
+* Take advantage of Rails' controllers, routes and views;
+* Use Haml with Markdown and Sass with Compass;
+* Take advantage of REST.
+* Finally use Rspec and inject some proper testing and specification practices.
+
+All of this while the rest of the team can still code the models (aka the
+business logic) the way they prefer. I think it's a good cause and it's a great
+opportunity to improve development happiness and systems integration.
+
+The challenge
+-------------
+
+Here is a list of the things I know:
+
+* I can use [RVM](http://rvm.beginrescueend.com) to quickly install
+ and use JRuby.
+* Gems with C extensions are a bit difficult to use inside the JVM.
+* There are alternative gems to the ones above.
+
+I also need to get in touch with these concepts:
+
+* Web application development in Java: .jar's, war's, etc.
+* [Tomcat](http://tomcat.apache.org) or [Glassfish](http://glassfish.java.net)
+ as servers.
+* Importing Java code into a Rails or Sinatra app.
+* (optional) Using Ruby code from Java.
+
+I guess the main question would be: _Where do I start?_ What am I
+supposed to know to begin developing some sort of Rails app, using it under
+Tomcat or Glassfish and reusing Java code from the rest of the team? Thanks for
+helping me, guys!