vote up 3 vote down star
2

Possible Duplicates:
Templates of Technical and Functional Specs
How can I learn about writing project specs?

I have some ideas for an internal framework which will be used only by me as a framework on which I will build future programming projects. While I have a basic idea of how this framework will function, I haven't written down exactly what features it would support, what classes it would have, what will be the main code directories containing the files, etc.

What's the best way to write the specs for this? What should I start with and how should I progress? Should I first write down all features and then begin listing the class names and methods I would need? Or is there a better technique out there?

flag

closed as exact duplicate by Josh Stodola, DVK, Pascal Thivent, Ngu Soon Hui, sth Oct 7 at 23:56

5 Answers

vote up 2 vote down check

Not thinking about your specific case, generally speaking, the flow will be

  • Introduction - Where you briefly introduce your framework
  • Overview - A general overview (this is optional if Introduction is good enough)
  • Block diagram - Where you show a pictorial representation of blocks
  • Detailed explanation of each block -
  • Other technical details follow -

Readers would like to get an overview before they goto in-depth details. Based on the target audience you can ignore or add few things ...

link|flag
vote up 4 vote down

You could, of course, check out Joel Spolsky's excellent series on writing specs. The series starts with Part 1.

link|flag
+1 for on-topic Joelism. Too bad there's no badge for that – DVK Oct 7 at 4:14
vote up 2 vote down

For personal projects I will basically just write what features I want, and then work on splitting it up into functional parts.

So, I have UI, service layer and dao layer. If I need more layers then I add them.

I then map the features to the layers, and develop a list of features for that layer.

I then begin to implement the feature, in an agile way, so I go from the UI -> database, so that feature is complete.

I just continue to repeat until I am done.

link|flag
vote up 1 vote down

Iterate! Iterate! Iterate!

Seriously, start with your high-level ideas, and just continually break them down into smaller and more manageable chunks.

Solve the general case first - it might be slightly more difficult, but the special case is always a sub/superset of the general case.

Don't [unnecessarily] tie yourself to language-specific details. If you want something that's possible in, say, Pascal, but easy in, say, Ruby - just put down what you want - determine the implementation later.

The interface should always be exclusive of the implementation, if at all possible.

link|flag
vote up 1 vote down

After having codeveloped more than a handful of frameworks over the past decade, the most effective way I have found to begin, is to stop writing documents about what you think you might need in the future.

The problem with frameworks (and especially the documents that describe them before they exist) is that we are forced to trade flexibility in return for simplicity. By making this tradeoff before having actual, running features that make real demands, it's incredibly difficult (read: nearly impossible) to intuit where the tradeoffs really belong.

Instead of thinking about writing a framework, I would encourage you to begin writing whatever it is that the framework is intended to support. But begin with a small, simple test case. Write just enough code to get this test to pass. Then refactor - removing any signs of duplication. Repeat these simple steps over and over until you have a collection of features that work and are both reliable as well as maintainable.

If you actually need to solve this problem a second time, begin with the code you created in the first project, adding seams only where necessary and adding tests as you go.

Do this through 4 or 5 similar projects, and your framework will emerge in it's most appropriate form.

link|flag

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