fabulator-xml 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 0.0.4 2010-09-07
2
+
3
+ * 1 minor enhancement
4
+ * Bump minimum version of Fabulator
5
+ * ActionLib => TagLib
6
+
1
7
  === 0.0.3 2010-08-16
2
8
 
3
9
  * 2 minor enhancements:
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ begin
7
7
  gem.email = "jgsmith@tamu.edu"
8
8
  gem.homepage = "http://github.com/jgsmith/ruby-fabulator-xml"
9
9
  gem.authors = ["James Smith"]
10
- gem.add_dependency('fabulator', '>= 0.0.1')
10
+ gem.add_dependency('fabulator', '>= 0.0.7')
11
11
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
12
12
  end
13
13
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -59,7 +59,7 @@ When /I unify the types? (.*)/ do |ts|
59
59
  pn = t.split(/:/, 2)
60
60
  [ @context.get_ns(pn[0]), pn[1] ]
61
61
  }
62
- @type_result = Fabulator::ActionLib.unify_types(
62
+ @type_result = Fabulator::TagLib.unify_types(
63
63
  types.collect { |t|
64
64
  pn = t.split(/:/, 2)
65
65
  [ @context.get_ns(pn[0]), pn[1] ]
@@ -4,10 +4,9 @@ module Fabulator
4
4
  XML_NS = "http://dh.tamu.edu/ns/fabulator/xml/1.0#"
5
5
  module Xml
6
6
  module Actions
7
- class Lib
8
- include Fabulator::ActionLib
7
+ class Lib < Fabulator::TagLib
9
8
 
10
- register_namespace XML_NS
9
+ namespace XML_NS
11
10
 
12
11
  register_type 'document', {
13
12
  :to => [
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fabulator-xml
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - James Smith
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-08-17 00:00:00 +00:00
18
+ date: 2010-09-07 00:00:00 +00:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -26,12 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- hash: 29
29
+ hash: 17
30
30
  segments:
31
31
  - 0
32
32
  - 0
33
- - 1
34
- version: 0.0.1
33
+ - 7
34
+ version: 0.0.7
35
35
  type: :runtime
36
36
  version_requirements: *id001
37
37
  description: XML functions and types for the Fabulator engine.