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 CHANGED
@@ -14,7 +14,7 @@ gem install solr_mapper
14
14
 
15
15
  class Stuff
16
16
  include SolrDocument
17
- bind_service_url = 'http://localhost:8080/solr/stuff'
17
+ bind_service_url 'http://localhost:8080/solr/stuff'
18
18
  limit_page_size 25
19
19
 
20
20
  belongs_to :thing
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.7') do |p|
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
@@ -44,7 +44,7 @@ module SolrMapper
44
44
  eval(RestClient.get(url))
45
45
  end
46
46
 
47
- # send a write REST command to SOlr
47
+ # send a write REST command to Solr
48
48
  def execute_write(data, opts = nil)
49
49
  send_update(data, opts)
50
50
 
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.7"
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-10-30}
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: 21
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 7
10
- version: 0.1.7
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-10-30 00:00:00 -04:00
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: []