Skip to content

Commit

Permalink
Edited README.
Browse files Browse the repository at this point in the history
  • Loading branch information
timscott committed Feb 18, 2012
1 parent deb1c63 commit 931e5c2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.markdown
@@ -1,6 +1,16 @@
# Introduction

FlipIt is a feature flipper. It provides a simple and flexible way to flip features in a .NET application. Use FlipIt to conditionally turn features or and off using your custom logic. Change those conditions over time without touching the production code where the features are implemented.
FlipIt is a feature flipper. It provides a simple and flexible way to flip features in a .NET application. Use FlipIt to:

* Conditionally turn features `OFF` and `ON` using custom logic per feature
* Change beahvior over time without touching the production code where features are implemented

This interface embodies the essence of FlipIt.

public interface IFeature
{
bool IsOn(IFeatureSettingsProvider featureSettingsProvider);
}

# Usage

Expand Down

0 comments on commit 931e5c2

Please sign in to comment.