mida 0.1.1 → 0.1.2
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.
- data/README.rdoc +1 -1
- data/Rakefile +3 -3
- metadata +4 -4
data/README.rdoc
CHANGED
|
@@ -19,7 +19,7 @@ With Ruby and Rubygems:
|
|
|
19
19
|
|
|
20
20
|
== Usage
|
|
21
21
|
The following examples assume that you have required +mida+ and
|
|
22
|
-
|
|
22
|
+
<tt>open-uri</tt>.
|
|
23
23
|
|
|
24
24
|
=== Extracting Microdata from a page
|
|
25
25
|
All the Microdata is extracted from a page when a new <tt>Mida::Document</tt> instance
|
data/Rakefile
CHANGED
|
@@ -5,8 +5,8 @@ require 'rake/gempackagetask'
|
|
|
5
5
|
spec = Gem::Specification.new do |s|
|
|
6
6
|
s.name = "mida"
|
|
7
7
|
s.summary = "A Microdata parser/extractor library"
|
|
8
|
-
s.description = "A Microdata parser and extractor library, based on the latest
|
|
9
|
-
s.version = "0.1.
|
|
8
|
+
s.description = "A Microdata parser and extractor library, based on the latest published version of the Microdata Specification, dated 5th April 2011."
|
|
9
|
+
s.version = "0.1.2"
|
|
10
10
|
s.author = "Lawrence Woodman"
|
|
11
11
|
s.email = "lwoodman@vlifesystems.com"
|
|
12
12
|
s.homepage = %q{http://github.com/LawrenceWoodman/mida}
|
|
@@ -16,7 +16,7 @@ spec = Gem::Specification.new do |s|
|
|
|
16
16
|
s.extra_rdoc_files = ['README.rdoc', 'LICENSE.rdoc']
|
|
17
17
|
s.rdoc_options << '--main' << 'README.rdoc'
|
|
18
18
|
s.add_dependency('nokogiri')
|
|
19
|
-
s.add_development_dependency('rspec')
|
|
19
|
+
s.add_development_dependency('rspec', '>= 2.0' )
|
|
20
20
|
end
|
|
21
21
|
Rake::GemPackageTask.new(spec).define
|
|
22
22
|
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: mida
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Lawrence Woodman
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-04-
|
|
13
|
+
date: 2011-04-15 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: nokogiri
|
|
@@ -31,10 +31,10 @@ dependencies:
|
|
|
31
31
|
requirements:
|
|
32
32
|
- - ">="
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: "0"
|
|
34
|
+
version: "2.0"
|
|
35
35
|
type: :development
|
|
36
36
|
version_requirements: *id002
|
|
37
|
-
description: A Microdata parser and extractor library, based on the latest
|
|
37
|
+
description: A Microdata parser and extractor library, based on the latest published version of the Microdata Specification, dated 5th April 2011.
|
|
38
38
|
email: lwoodman@vlifesystems.com
|
|
39
39
|
executables: []
|
|
40
40
|
|