Can Netbeans be used as an IDE for Sinatra?

Foreword: I'm a big fan of Netbeans development for Rails.

I am just starting my first Sinatra application and it doesn't seem like Netbeans provides any IDE support for Sinatra development.

Has anyone found a solution or am I just missing something?

+2


source to share


1 answer


IDE? You just need a text editor with Ruby syntax highlighting.



Sinatra has to be a thin layer on top of the strut, so there just aren't many of the Sinatra-specific features. You can do it without the help of an IDE. Just check the documentation . The official documentation is still spotty, so be sure to read the source . It's compact and easy to understand.

+4


source







All Articles