statemachine 0.0.0 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +6 -0
- data/Rakefile +2 -2
- metadata +1 -1
data/CHANGES
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
= StateMachine Changelog
|
2
2
|
|
3
|
+
== Version 0.0.1
|
4
|
+
|
5
|
+
0.0.0 didn't seem to work as a gem so maybe this one will.
|
6
|
+
|
7
|
+
* nothing really, just playing with rake and release configuration
|
8
|
+
|
3
9
|
== Version 0.0.0
|
4
10
|
|
5
11
|
The first release. Most finite state machine features are implemented
|
data/Rakefile
CHANGED
@@ -14,8 +14,8 @@ load File.dirname(__FILE__) + '/tasks/failing_examples_with_html.rake'
|
|
14
14
|
load File.dirname(__FILE__) + '/tasks/verify_rcov.rake'"
|
15
15
|
|
16
16
|
PKG_NAME = "statemachine"
|
17
|
-
PKG_VERSION = "0.0.
|
18
|
-
PKG_TAG = "
|
17
|
+
PKG_VERSION = "0.0.1"
|
18
|
+
PKG_TAG = "0_0_1"
|
19
19
|
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
20
20
|
PKG_FILES = FileList[
|
21
21
|
'[A-Z]*',
|
metadata
CHANGED