vote up 7 vote down star
4

I'm an experienced developer who has been working with .Net for the last 5 years or so. As I've been assembling an application stack for a startup idea I've had, I've noticed that many of the supporting tools that I would like to use are either flaky or have become commercial. As I have no revenue, and factoring in the cost for for Visual Studio, SQL Server (yes, I know about Biz Spark), etc, and I've suddenly realised that I should be looking elsewhere.

So, without further ado, here are my requirements and nice-to-haves. The obvious front-runners are Java and Ruby, but I'm happy to hear any other suggestions (Object oriented and compiled preferred but not required. PHP not welcome here).

Overall

  • Mandatory: Supported by shared hosting to get started
  • Desirable: Should not be too fiddly to get working (just work when components are plugged in)

Framework

  • Mandatory: Modern mvc framework
  • Mandatory: Fine-grained control over html output

Code Quality

  • Mandatory: Logging framework
  • Desirable: Static analysis (complexity, etc)
  • Desirable: Generate UML diagrams of code structure
  • Desirable: Test coverage reports

OOP Stuff

  • Mandatory: ORM that handles semi-deep hierarchies, incl many-to-many relationships.
  • Mandatory: Mock framework
  • Mandatory: IOC container (probably its own category)

IDE

  • Mandatory: Formatting assistance (indentation)
  • Mandatory: debugging: break points, variable inspection
  • Desirable: auto-completion: VS's intellisense is really nice. This is close to mandatory
  • Desirable: debugging: in-place code execution (immediate window), move current frame backwards
  • Desirable: Test framework integration

Code Quality

  • Mandatory: Test framework
  • Desirable: Code coverage
  • Desirable: Generate documentation from code comments

Build

  • Desirable: One click pull from SVN, build, test, code coverage, code documentation
  • Desirable: Continuous integration (for later when we, er, get really big)

Other notes: I'm happy using Linux (would be quite refreshing!). I'm assuming MySQL for DB, as I don't require ACID compliance (and it's probably ACID by now anyway), and SVN for source control.

Any help or suggestions would be greatly appreciated.

Edit: Currently leaning towards Sinatra, as it looks very elegant, but allows the user to have as much or as little control as they want. And I will select an answer when I think the answers have stopped.

flag

A few of the requirements seem MS-centric, and might stifle your choices. You might benefit more by opening up a little. For instance, IoC doesn't make as much sense in Ruby due to the language's design. I know you think you need it, but experienced Rubyists have more idiomatic solutions than IoC (trust me, or google Jamis Buck RubyConf and watch the talk). Similarly, auto-completion isn't as big of a deal in Ruby or Python because overall LOCs are much lower. – runako May 6 at 22:39
I'm pretty open. Perhaps it's what I'm used to. But autocomplete is nice ... it's about discovering APIs rather than saving keystrokes. It's hard to do in dynamic languages, though. – Travis May 6 at 23:57

8 Answers

vote up 7 vote down check
link|flag
+1 for symfony! – Peter D May 6 at 22:24
Browsing through sinatra docs... looks very nice – Travis May 7 at 0:06
Pros and cons of each would be nice. Thanks anyway. – jasonco May 7 at 0:07
Pros and cons would indeed be nice, however I could fill a whole book about it. Thats why I provide links to the websites so people who are interested could read about it themselves and draw their own conclusion. – Tomh May 7 at 17:01
vote up 0 vote down

Auto-completion for Ruby (and Rails)?

Jet Brain's RubyMine works great. I agree that it's all about API discovery....

link|flag
vote up 0 vote down

I would have thought that the express editions of visual studio pretty much have you covered. They meet your experience and when combined with MYSql on the back end and the million and one free developed components for .net might well do what you want.

Is there something specific that precludes them?

link|flag
vote up 2 vote down

Shared hosting is stronger in Ruby than Java, and since you excluded PHP (which is hugely popular in shared hosting) that one is going to lean you in Ruby's direction.

Framework: If you are using Ruby, RoR is the way to go. If you decide on Java, I would (besides the excellent recommendations in other answers) look at Rife. That is one kind of approach (more code driven). Seam + IceFaces (or RichFaces if you need some of the robustness in exchange for the widgets) is a different kind of approach, but is also effective.

Eclipse plus plugins gives you a lot of what you are looking for in terms of tools (for free). You could also look at Intellij, which is $249 for the personal license (personal just means that it is licensed in your name instead of your company's, no limitations), or RubyMine for Ruby from the same company, $99.

Continuous integration, I had great success with TeamCity, and its free at the starter level.

(No, I do not work for JetBrains, I have just had good experiences with their products).

I know I didn't tick off every one on your list, but once you add in the plugins available for the IDEs, everything on your list is covered on the above. Of course there are plenty of other frameworks. The nice thing about the non-Microsoft solutions is that there are so many options. The bad thing about the non-Microsoft solutions is that there are so many options ...

link|flag
Thank you, very informative – Travis May 6 at 23:53
vote up 2 vote down

The Ramaze or Sinatra Ruby microframeworks, if you want to get off to a quick start.

link|flag
Thanks. Liking what I've seen of Sinatra. – Travis May 7 at 1:45
vote up 1 vote down

Lift! It is written in Scala, represents some kind of paradigm shift among web frameworks, and a hosting service with JVM is sufficient.

link|flag
vote up 1 vote down

Django is an excellent choice. It has nice separation of concerns without having the learning curve of something like Zope.

link|flag
vote up 2 vote down

S#arp Architecture (Combines ASP.Net MVC and NHibernate, with NUnit and Rhino Mocks)

http://code.google.com/p/sharp-architecture/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.