fabulator 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (6) hide show
  1. data/History.txt +5 -0
  2. data/PostInstall.txt +7 -0
  3. data/TODO +7 -0
  4. data/VERSION +1 -1
  5. data/test/cucumber.rb +10 -0
  6. metadata +26 -5
data/History.txt CHANGED
@@ -12,3 +12,8 @@
12
12
  consolidation.
13
13
  * Use LibXSLT to apply template to html transform (requires the
14
14
  libxslt-ruby gem)
15
+
16
+ === 0.0.3 2010-08-10
17
+
18
+ * 1 minor enhancement
19
+ * Add libxslt-ruby gem dependence to gem spec
data/PostInstall.txt ADDED
@@ -0,0 +1,7 @@
1
+
2
+ For more information on fabulator, see http://github.com/jgsmith/ruby-fabulator
3
+
4
+ NOTE: Change this information in PostInstall.txt
5
+ You can also delete it if you don't want it.
6
+
7
+
data/TODO ADDED
@@ -0,0 +1,7 @@
1
+ Consolidation:
2
+
3
+ take a series of elements and combine them, preserving attributes
4
+
5
+ how do we know which elements are identical?
6
+
7
+ use eq on type?
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
data/test/cucumber.rb ADDED
@@ -0,0 +1,10 @@
1
+ #! /usr/local/bin/ruby
2
+
3
+ require 'fabulator'
4
+ require 'fabulator/template'
5
+
6
+ version = ">= 0"
7
+
8
+ gem 'cucumber', version
9
+ load Gem.bin_path('cucumber', 'cucumber', version)
10
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fabulator
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - James Smith
@@ -35,9 +35,25 @@ dependencies:
35
35
  type: :runtime
36
36
  version_requirements: *id001
37
37
  - !ruby/object:Gem::Dependency
38
- name: radius
38
+ name: libxslt-ruby
39
39
  prerelease: false
40
40
  requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 53
46
+ segments:
47
+ - 0
48
+ - 9
49
+ - 7
50
+ version: 0.9.7
51
+ type: :runtime
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: radius
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
41
57
  none: false
42
58
  requirements:
43
59
  - - ">="
@@ -49,7 +65,7 @@ dependencies:
49
65
  - 1
50
66
  version: 0.6.1
51
67
  type: :runtime
52
- version_requirements: *id002
68
+ version_requirements: *id003
53
69
  description: The fabulator library provides a state machine implementation of a core set of semantics for building data-driven applications using a simple XML language coupled with an XQuery-like expression language.
54
70
  email: jgsmith@tamu.edu
55
71
  executables: []
@@ -58,9 +74,11 @@ extensions: []
58
74
 
59
75
  extra_rdoc_files:
60
76
  - README.rdoc
77
+ - TODO
61
78
  files:
62
79
  - History.txt
63
80
  - Manifest.txt
81
+ - PostInstall.txt
64
82
  - README.rdoc
65
83
  - Rakefile
66
84
  - VERSION
@@ -127,6 +145,8 @@ files:
127
145
  - test/test_helper.rb
128
146
  - xslt/form.xsl
129
147
  - xsm_expression_parser.racc
148
+ - TODO
149
+ - test/cucumber.rb
130
150
  has_rdoc: true
131
151
  homepage: http://github.com/jgsmith/ruby-fabulator
132
152
  licenses: []
@@ -164,3 +184,4 @@ summary: XML-based state machine description language and engine.
164
184
  test_files:
165
185
  - test/test_fabulator.rb
166
186
  - test/test_helper.rb
187
+ - test/cucumber.rb