Skip to content

Commit

Permalink
Version bumped to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
landro committed Aug 23, 2013
1 parent b61dfbe commit 3b9252c
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Let's say you want to test the following simple iRule found in *simple_irule.tcl

Now, create a file called *test_simple_irule.tcl* containing the following lines:

package require -exact testcl 1.0.1
package require -exact testcl 1.0.2
namespace import ::testcl::*

# Comment in to enable logging
Expand Down Expand Up @@ -155,7 +155,7 @@ NB! Be carefull with using _on_ commands in _before_. If there will be another d

Using the _before_ command, *test_simple_irule.tcl* can be rewritten as:

package require -exact testcl 1.0.1
package require -exact testcl 1.0.2
namespace import ::testcl::*

# Comment in to enable logging
Expand Down Expand Up @@ -232,7 +232,7 @@ Let's have a look at a more advanced iRule (advanced_irule.tcl):

The specs for this iRule would look like this:

package require -exact testcl 1.0.1
package require -exact testcl 1.0.2
namespace import ::testcl::*

# Comment out to suppress logging
Expand Down Expand Up @@ -344,7 +344,7 @@ Let's have a look at a another iRule (headers_irule.tcl):

The example specs for this iRule would look like this:

package require -exact testcl 1.0.1
package require -exact testcl 1.0.2
namespace import ::testcl::*

# Comment out to suppress logging
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_advanced.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.1
package require -exact testcl 1.0.2
namespace import ::testcl::*

##
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_headers.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.1
package require -exact testcl 1.0.2
namespace import ::testcl::*

##
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_simple.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.1
package require -exact testcl 1.0.2
namespace import ::testcl::*

##
Expand Down
2 changes: 1 addition & 1 deletion pkgIndex.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if {[namespace exists ::testcl]} {
return
}

package ifneeded testcl 1.0.1 [list source [file join $dir src/assert.tcl]]\n[list source [file join $dir src/it.tcl]]\n[list source [file join $dir src/on.tcl]]\n[list source [file join $dir src/onirule.tcl]]\n[list source [file join $dir src/irulehttp.tcl]]
package ifneeded testcl 1.0.2 [list source [file join $dir src/assert.tcl]]\n[list source [file join $dir src/it.tcl]]\n[list source [file join $dir src/on.tcl]]\n[list source [file join $dir src/onirule.tcl]]\n[list source [file join $dir src/irulehttp.tcl]]

# Disable certain Tcl commands from iRules
source [file join $dir src/disabled_commands.tcl]
2 changes: 1 addition & 1 deletion src/assert.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.1
package provide testcl 1.0.2
package require log

namespace eval ::testcl {
Expand Down
2 changes: 1 addition & 1 deletion src/irulehttp.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.1
package provide testcl 1.0.2
package require log

package require base64
Expand Down
2 changes: 1 addition & 1 deletion src/it.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.1
package provide testcl 1.0.2
package require log

namespace eval ::testcl {
Expand Down
2 changes: 1 addition & 1 deletion src/on.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.1
package provide testcl 1.0.2
package require log

namespace eval ::testcl {
Expand Down
2 changes: 1 addition & 1 deletion src/onirule.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.1
package provide testcl 1.0.2
package require log

namespace eval ::testcl {
Expand Down

0 comments on commit 3b9252c

Please sign in to comment.