Skip to content

Commit

Permalink
Merge pull request #51 from seancorfield/master
Browse files Browse the repository at this point in the history
Auto-ignore FW/1 and DI/1
  • Loading branch information
seancorfield committed Sep 7, 2013
2 parents c0cf6d0 + f687d35 commit 314e294
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ioc.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ component {
variables.beanInfo = { };
variables.beanCache = { };
variables.settersInfo = { };
variables.autoExclude = [ '/WEB-INF', '/Application.cfc' ];
variables.autoExclude = [ '/WEB-INF', '/Application.cfc',
'framework.cfc', 'ioc.cfc' ];
variables.listeners = 0;
setupFrameworkDefaults();
return this;
Expand Down Expand Up @@ -607,7 +608,7 @@ component {
throw 'singletonPattern and transientPattern are mutually exclusive';
}

variables.config.version = '0.4.9';
variables.config.version = '0.4.10';
}


Expand Down

0 comments on commit 314e294

Please sign in to comment.