xml-smart 0.3.0.6 → 0.3.0.7

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 (3) hide show
  1. data/README.rdoc +4 -4
  2. data/xml-smart.gemspec +1 -1
  3. metadata +9 -9
data/README.rdoc CHANGED
@@ -10,7 +10,7 @@ This program is distributed without any warranty. See the file 'COPYING' for det
10
10
 
11
11
  - Based on Nokogiri 1.5.5
12
12
  - Thus works for MRI ruby 1.8.7, 1.9.x, JRuby (basically everything that is Nokogiri ready)
13
- - Works on Linux, OSX, Windows
13
+ - Works on Linux, OSX, Windows
14
14
 
15
15
  == Features
16
16
 
@@ -24,17 +24,17 @@ This program is distributed without any warranty. See the file 'COPYING' for det
24
24
 
25
25
  === XML only
26
26
 
27
- sorry, no css selectors, html, ... go to Nokogiri if you look for these
27
+ Sorry, no css selectors, html, ... go to Nokogiri if you look for these.
28
28
 
29
29
  === Great and convenient namespace support, compared to everything else out there
30
30
 
31
- - use namespaces in xpaths without any additional work
31
+ Use namespaces in xpaths without any additional work:
32
32
 
33
33
  doc = XML::Smart.string('<test xmlns:aaa="uri:aaa"><aaa:test/></test>')
34
34
  doc.find('string(aaa:test)')
35
35
  doc.close
36
36
 
37
- - register your own shortcusts to be available in all XPaths
37
+ Register your own shortcusts to be available in all XPaths:
38
38
 
39
39
  doc = XML::Smart.string('<test xmlns:aaa="uri:aaa"><aaa:test/></test>')
40
40
  doc.register_namespace :a, 'uri:aaa'
data/xml-smart.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "xml-smart"
3
- s.version = "0.3.0.6"
3
+ s.version = "0.3.0.7"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.summary = "An xml library that doesn't suck - since 2004."
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xml-smart
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0.6
4
+ version: 0.3.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-12-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri
16
- requirement: &72598670 !ruby/object:Gem::Requirement
16
+ requirement: &72915560 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *72598670
24
+ version_requirements: *72915560
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: lockfile
27
- requirement: &72597750 !ruby/object:Gem::Requirement
27
+ requirement: &72914650 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *72597750
35
+ version_requirements: *72914650
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: term-ansicolor
38
- requirement: &72596440 !ruby/object:Gem::Requirement
38
+ requirement: &72913370 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *72596440
46
+ version_requirements: *72913370
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: minitest
49
- requirement: &72408590 !ruby/object:Gem::Requirement
49
+ requirement: &72725480 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: '0'
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *72408590
57
+ version_requirements: *72725480
58
58
  description: An xml library that doesn't suck (since 2004). Based on Nokogiri since
59
59
  2012. For more info check out the Documentation link below.
60
60
  email: juergen.mangler@gmail.com