views:

300

answers:

1

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

I'm just starting my first Sinatra app and it doesn't look like Netbeans provides any IDE support for Sinatra development.

Has anyone discovered a solution or did I just miss something?

+3  A: 

An IDE? You're just going to need a text editor with Ruby syntax highlighting.

Sinatra is meant to be a thin layer on top of Rack, so there just aren't that many Sinatra-specific features to learn. You'll be okay without any IDE help. Just check the documentation. The official documentation is still spotty, so be sure to read the source too. It's compact and easy to understand.

guns