solr_mapper 0.1.7 → 0.1.8
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 -2
- data/lib/solr_mapper/solr_document.rb +1 -1
- data/solr_mapper.gemspec +5 -2
- metadata +19 -4
    
        data/README.rdoc
    CHANGED
    
    
    
        data/Rakefile
    CHANGED
    
    | @@ -16,12 +16,12 @@ require 'rubygems' | |
| 16 16 | 
             
            require 'rake'
         | 
| 17 17 | 
             
            require 'echoe'
         | 
| 18 18 |  | 
| 19 | 
            -
            Echoe.new('solr_mapper', '0.1. | 
| 19 | 
            +
            Echoe.new('solr_mapper', '0.1.8') do |p|
         | 
| 20 20 | 
             
              p.description    = "Object Document Mapper for the Apache Foundation's Solr search platform"
         | 
| 21 21 | 
             
              p.url            = "http://github.com/skunkworx/solr_mapper"
         | 
| 22 22 | 
             
              p.author         = "Chris Umbel"
         | 
| 23 23 | 
             
              p.email          = "chrisu@dvdempire.com"
         | 
| 24 24 | 
             
              p.ignore_pattern = ["tmp/*", "script/*"]
         | 
| 25 25 | 
             
              p.runtime_dependencies = ['rest-client', 'uuid', 'will_paginate', 'activesupport']
         | 
| 26 | 
            -
              p.development_dependencies = []
         | 
| 26 | 
            +
              p.development_dependencies = ["rspec >=2.0"]
         | 
| 27 27 | 
             
            end
         | 
    
        data/solr_mapper.gemspec
    CHANGED
    
    | @@ -2,11 +2,11 @@ | |
| 2 2 |  | 
| 3 3 | 
             
            Gem::Specification.new do |s|
         | 
| 4 4 | 
             
              s.name = %q{solr_mapper}
         | 
| 5 | 
            -
              s.version = "0.1. | 
| 5 | 
            +
              s.version = "0.1.8"
         | 
| 6 6 |  | 
| 7 7 | 
             
              s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
         | 
| 8 8 | 
             
              s.authors = ["Chris Umbel"]
         | 
| 9 | 
            -
              s.date = %q{2010- | 
| 9 | 
            +
              s.date = %q{2010-12-02}
         | 
| 10 10 | 
             
              s.description = %q{Object Document Mapper for the Apache Foundation's Solr search platform}
         | 
| 11 11 | 
             
              s.email = %q{chrisu@dvdempire.com}
         | 
| 12 12 | 
             
              s.extra_rdoc_files = ["LICENSE.txt", "README.rdoc", "lib/solr_mapper.rb", "lib/solr_mapper/calculations.rb", "lib/solr_mapper/locators.rb", "lib/solr_mapper/relations.rb", "lib/solr_mapper/solr_document.rb"]
         | 
| @@ -27,16 +27,19 @@ Gem::Specification.new do |s| | |
| 27 27 | 
             
                  s.add_runtime_dependency(%q<uuid>, [">= 0"])
         | 
| 28 28 | 
             
                  s.add_runtime_dependency(%q<will_paginate>, [">= 0"])
         | 
| 29 29 | 
             
                  s.add_runtime_dependency(%q<activesupport>, [">= 0"])
         | 
| 30 | 
            +
                  s.add_development_dependency(%q<rspec>, [">= 2.0"])
         | 
| 30 31 | 
             
                else
         | 
| 31 32 | 
             
                  s.add_dependency(%q<rest-client>, [">= 0"])
         | 
| 32 33 | 
             
                  s.add_dependency(%q<uuid>, [">= 0"])
         | 
| 33 34 | 
             
                  s.add_dependency(%q<will_paginate>, [">= 0"])
         | 
| 34 35 | 
             
                  s.add_dependency(%q<activesupport>, [">= 0"])
         | 
| 36 | 
            +
                  s.add_dependency(%q<rspec>, [">= 2.0"])
         | 
| 35 37 | 
             
                end
         | 
| 36 38 | 
             
              else
         | 
| 37 39 | 
             
                s.add_dependency(%q<rest-client>, [">= 0"])
         | 
| 38 40 | 
             
                s.add_dependency(%q<uuid>, [">= 0"])
         | 
| 39 41 | 
             
                s.add_dependency(%q<will_paginate>, [">= 0"])
         | 
| 40 42 | 
             
                s.add_dependency(%q<activesupport>, [">= 0"])
         | 
| 43 | 
            +
                s.add_dependency(%q<rspec>, [">= 2.0"])
         | 
| 41 44 | 
             
              end
         | 
| 42 45 | 
             
            end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,13 +1,13 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 2 | 
             
            name: solr_mapper
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            -
              hash:  | 
| 4 | 
            +
              hash: 11
         | 
| 5 5 | 
             
              prerelease: false
         | 
| 6 6 | 
             
              segments: 
         | 
| 7 7 | 
             
              - 0
         | 
| 8 8 | 
             
              - 1
         | 
| 9 | 
            -
              -  | 
| 10 | 
            -
              version: 0.1. | 
| 9 | 
            +
              - 8
         | 
| 10 | 
            +
              version: 0.1.8
         | 
| 11 11 | 
             
            platform: ruby
         | 
| 12 12 | 
             
            authors: 
         | 
| 13 13 | 
             
            - Chris Umbel
         | 
| @@ -15,7 +15,7 @@ autorequire: | |
| 15 15 | 
             
            bindir: bin
         | 
| 16 16 | 
             
            cert_chain: []
         | 
| 17 17 |  | 
| 18 | 
            -
            date: 2010- | 
| 18 | 
            +
            date: 2010-12-02 00:00:00 -05:00
         | 
| 19 19 | 
             
            default_executable: 
         | 
| 20 20 | 
             
            dependencies: 
         | 
| 21 21 | 
             
            - !ruby/object:Gem::Dependency 
         | 
| @@ -74,6 +74,21 @@ dependencies: | |
| 74 74 | 
             
                    version: "0"
         | 
| 75 75 | 
             
              type: :runtime
         | 
| 76 76 | 
             
              version_requirements: *id004
         | 
| 77 | 
            +
            - !ruby/object:Gem::Dependency 
         | 
| 78 | 
            +
              name: rspec
         | 
| 79 | 
            +
              prerelease: false
         | 
| 80 | 
            +
              requirement: &id005 !ruby/object:Gem::Requirement 
         | 
| 81 | 
            +
                none: false
         | 
| 82 | 
            +
                requirements: 
         | 
| 83 | 
            +
                - - ">="
         | 
| 84 | 
            +
                  - !ruby/object:Gem::Version 
         | 
| 85 | 
            +
                    hash: 3
         | 
| 86 | 
            +
                    segments: 
         | 
| 87 | 
            +
                    - 2
         | 
| 88 | 
            +
                    - 0
         | 
| 89 | 
            +
                    version: "2.0"
         | 
| 90 | 
            +
              type: :development
         | 
| 91 | 
            +
              version_requirements: *id005
         | 
| 77 92 | 
             
            description: Object Document Mapper for the Apache Foundation's Solr search platform
         | 
| 78 93 | 
             
            email: chrisu@dvdempire.com
         | 
| 79 94 | 
             
            executables: []
         |