mida 0.0.0 → 0.1.0
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 +2 -3
 - metadata +6 -21
 
    
        data/README.rdoc
    CHANGED
    
    | 
         @@ -33,7 +33,7 @@ The top-level +Items+ will be held in an array accessible via 
     | 
|
| 
       33 
33 
     | 
    
         
             
            <tt>doc.items</tt>.
         
     | 
| 
       34 
34 
     | 
    
         | 
| 
       35 
35 
     | 
    
         
             
            To simply list all the top-level +Items+ that have been found:
         
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
      
 36 
     | 
    
         
            +
              puts doc.items
         
     | 
| 
       37 
37 
     | 
    
         | 
| 
       38 
38 
     | 
    
         
             
            === Searching
         
     | 
| 
       39 
39 
     | 
    
         
             
            If you want to search for an +Item+ that has a specific +itemtype+/vocabulary
         
     | 
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -4,16 +4,15 @@ desc "Create Gem" 
     | 
|
| 
       4 
4 
     | 
    
         
             
            require 'rake/gempackagetask'
         
     | 
| 
       5 
5 
     | 
    
         
             
            spec = Gem::Specification.new do |s|
         
     | 
| 
       6 
6 
     | 
    
         
             
              s.name        = "mida"
         
     | 
| 
       7 
     | 
    
         
            -
              s.summary     = "A Microdata parser"
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.summary     = "A Microdata parser/extractor library"
         
     | 
| 
       8 
8 
     | 
    
         
             
              s.description = File.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
         
     | 
| 
       9 
     | 
    
         
            -
              s.version     = "0. 
     | 
| 
      
 9 
     | 
    
         
            +
              s.version     = "0.1.0"
         
     | 
| 
       10 
10 
     | 
    
         
             
              s.author      = "Lawrence Woodman"
         
     | 
| 
       11 
11 
     | 
    
         
             
              s.email       = "lwoodman@vlifesystems.com"
         
     | 
| 
       12 
12 
     | 
    
         
             
              s.homepage    = %q{http://github.com/LawrenceWoodman/mida}
         
     | 
| 
       13 
13 
     | 
    
         
             
              s.platform    = Gem::Platform::RUBY
         
     | 
| 
       14 
14 
     | 
    
         
             
              s.required_ruby_version = '>=1.9'
         
     | 
| 
       15 
15 
     | 
    
         
             
              s.files       = Dir['lib/**/*.rb'] + Dir['spec/**/*.rb'] + Dir['*.rdoc'] + Dir['Rakefile']
         
     | 
| 
       16 
     | 
    
         
            -
              s.has_rdoc    = true
         
     | 
| 
       17 
16 
     | 
    
         
             
              s.extra_rdoc_files = ['README.rdoc', 'LICENSE.rdoc']
         
     | 
| 
       18 
17 
     | 
    
         
             
              s.rdoc_options << '--main' << 'README.rdoc'
         
     | 
| 
       19 
18 
     | 
    
         
             
              s.add_dependency('nokogiri')
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,12 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: mida
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              prerelease:  
     | 
| 
       5 
     | 
    
         
            -
               
     | 
| 
       6 
     | 
    
         
            -
              - 0
         
     | 
| 
       7 
     | 
    
         
            -
              - 0
         
     | 
| 
       8 
     | 
    
         
            -
              - 0
         
     | 
| 
       9 
     | 
    
         
            -
              version: 0.0.0
         
     | 
| 
      
 4 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
      
 5 
     | 
    
         
            +
              version: 0.1.0
         
     | 
| 
       10 
6 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       11 
7 
     | 
    
         
             
            authors: 
         
     | 
| 
       12 
8 
     | 
    
         
             
            - Lawrence Woodman
         
     | 
| 
         @@ -14,8 +10,7 @@ autorequire: 
     | 
|
| 
       14 
10 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       15 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       16 
12 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
            date: 2011-04-12 00:00:00  
     | 
| 
       18 
     | 
    
         
            -
            default_executable: 
         
     | 
| 
      
 13 
     | 
    
         
            +
            date: 2011-04-12 00:00:00 Z
         
     | 
| 
       19 
14 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       20 
15 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       21 
16 
     | 
    
         
             
              name: nokogiri
         
     | 
| 
         @@ -25,8 +20,6 @@ dependencies: 
     | 
|
| 
       25 
20 
     | 
    
         
             
                requirements: 
         
     | 
| 
       26 
21 
     | 
    
         
             
                - - ">="
         
     | 
| 
       27 
22 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       28 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       29 
     | 
    
         
            -
                    - 0
         
     | 
| 
       30 
23 
     | 
    
         
             
                    version: "0"
         
     | 
| 
       31 
24 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       32 
25 
     | 
    
         
             
              version_requirements: *id001
         
     | 
| 
         @@ -38,8 +31,6 @@ dependencies: 
     | 
|
| 
       38 
31 
     | 
    
         
             
                requirements: 
         
     | 
| 
       39 
32 
     | 
    
         
             
                - - ">="
         
     | 
| 
       40 
33 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       41 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       42 
     | 
    
         
            -
                    - 0
         
     | 
| 
       43 
34 
     | 
    
         
             
                    version: "0"
         
     | 
| 
       44 
35 
     | 
    
         
             
              type: :development
         
     | 
| 
       45 
36 
     | 
    
         
             
              version_requirements: *id002
         
     | 
| 
         @@ -79,7 +70,7 @@ description: | 
     | 
|
| 
       79 
70 
     | 
    
         
             
              <tt>doc.items</tt>.
         
     | 
| 
       80 
71 
     | 
    
         | 
| 
       81 
72 
     | 
    
         
             
              To simply list all the top-level +Items+ that have been found:
         
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
      
 73 
     | 
    
         
            +
                puts doc.items
         
     | 
| 
       83 
74 
     | 
    
         | 
| 
       84 
75 
     | 
    
         
             
              === Searching
         
     | 
| 
       85 
76 
     | 
    
         
             
              If you want to search for an +Item+ that has a specific +itemtype+/vocabulary
         
     | 
| 
         @@ -134,7 +125,6 @@ files: 
     | 
|
| 
       134 
125 
     | 
    
         
             
            - README.rdoc
         
     | 
| 
       135 
126 
     | 
    
         
             
            - LICENSE.rdoc
         
     | 
| 
       136 
127 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       137 
     | 
    
         
            -
            has_rdoc: true
         
     | 
| 
       138 
128 
     | 
    
         
             
            homepage: http://github.com/LawrenceWoodman/mida
         
     | 
| 
       139 
129 
     | 
    
         
             
            licenses: []
         
     | 
| 
       140 
130 
     | 
    
         | 
| 
         @@ -149,24 +139,19 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       149 
139 
     | 
    
         
             
              requirements: 
         
     | 
| 
       150 
140 
     | 
    
         
             
              - - ">="
         
     | 
| 
       151 
141 
     | 
    
         
             
                - !ruby/object:Gem::Version 
         
     | 
| 
       152 
     | 
    
         
            -
                  segments: 
         
     | 
| 
       153 
     | 
    
         
            -
                  - 1
         
     | 
| 
       154 
     | 
    
         
            -
                  - 9
         
     | 
| 
       155 
142 
     | 
    
         
             
                  version: "1.9"
         
     | 
| 
       156 
143 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
       157 
144 
     | 
    
         
             
              none: false
         
     | 
| 
       158 
145 
     | 
    
         
             
              requirements: 
         
     | 
| 
       159 
146 
     | 
    
         
             
              - - ">="
         
     | 
| 
       160 
147 
     | 
    
         
             
                - !ruby/object:Gem::Version 
         
     | 
| 
       161 
     | 
    
         
            -
                  segments: 
         
     | 
| 
       162 
     | 
    
         
            -
                  - 0
         
     | 
| 
       163 
148 
     | 
    
         
             
                  version: "0"
         
     | 
| 
       164 
149 
     | 
    
         
             
            requirements: []
         
     | 
| 
       165 
150 
     | 
    
         | 
| 
       166 
151 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       167 
     | 
    
         
            -
            rubygems_version: 1. 
     | 
| 
      
 152 
     | 
    
         
            +
            rubygems_version: 1.7.2
         
     | 
| 
       168 
153 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       169 
154 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       170 
     | 
    
         
            -
            summary: A Microdata parser
         
     | 
| 
      
 155 
     | 
    
         
            +
            summary: A Microdata parser/extractor library
         
     | 
| 
       171 
156 
     | 
    
         
             
            test_files: []
         
     | 
| 
       172 
157 
     | 
    
         |