sunspot_matchers 1.1.0.0 → 1.2.0.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/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sunspot_matchers (1.1.0.0)
4
+ sunspot_matchers (1.2.0.0)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -9,6 +9,8 @@ GEM
9
9
  builder (3.0.0)
10
10
  diff-lcs (1.1.2)
11
11
  escape (0.0.4)
12
+ pr_geohash (1.0.0)
13
+ rake (0.8.7)
12
14
  rsolr (0.12.1)
13
15
  builder (>= 2.1.2)
14
16
  rspec (2.1.0)
@@ -19,8 +21,9 @@ GEM
19
21
  rspec-expectations (2.1.0)
20
22
  diff-lcs (~> 1.1.2)
21
23
  rspec-mocks (2.1.0)
22
- sunspot (1.1.0)
24
+ sunspot (1.2.0)
23
25
  escape (= 0.0.4)
26
+ pr_geohash (~> 1.0)
24
27
  rsolr (= 0.12.1)
25
28
 
26
29
  PLATFORMS
@@ -28,6 +31,7 @@ PLATFORMS
28
31
 
29
32
  DEPENDENCIES
30
33
  bundler (>= 1.0.0)
34
+ rake
31
35
  rspec (~> 2.1.0)
32
- sunspot (~> 1.1.0)
36
+ sunspot (~> 1.2.0)
33
37
  sunspot_matchers!
data/Rakefile CHANGED
@@ -1,2 +1,13 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+ desc "Run all specs"
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task :default => :spec
9
+
10
+ desc "Runs the CI build"
11
+ task :cruise do
12
+ Rake::Task["spec"].execute
13
+ end
@@ -1,3 +1,3 @@
1
1
  module SunspotMatchers
2
- VERSION = "1.1.0.0"
2
+ VERSION = "1.2.0.0"
3
3
  end
@@ -15,7 +15,8 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.add_development_dependency "bundler", ">= 1.0.0"
17
17
  s.add_development_dependency "rspec", "~> 2.1.0"
18
- s.add_development_dependency "sunspot", "~> 1.1.0"
18
+ s.add_development_dependency "sunspot", "~> 1.2.0"
19
+ s.add_development_dependency "rake"
19
20
 
20
21
  s.files = `git ls-files`.split("\n")
21
22
  s.require_path = 'lib'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sunspot_matchers
3
3
  version: !ruby/object:Gem::Version
4
- hash: 87
4
+ hash: 79
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
- - 1
8
+ - 2
9
9
  - 0
10
10
  - 0
11
- version: 1.1.0.0
11
+ version: 1.2.0.0
12
12
  platform: ruby
13
13
  authors:
14
14
  - Joseph Palermo
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-12-22 00:00:00 -08:00
19
+ date: 2010-12-29 00:00:00 -08:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -59,14 +59,28 @@ dependencies:
59
59
  requirements:
60
60
  - - ~>
61
61
  - !ruby/object:Gem::Version
62
- hash: 19
62
+ hash: 31
63
63
  segments:
64
64
  - 1
65
- - 1
65
+ - 2
66
66
  - 0
67
- version: 1.1.0
67
+ version: 1.2.0
68
68
  type: :development
69
69
  version_requirements: *id003
70
+ - !ruby/object:Gem::Dependency
71
+ name: rake
72
+ prerelease: false
73
+ requirement: &id004 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ hash: 3
79
+ segments:
80
+ - 0
81
+ version: "0"
82
+ type: :development
83
+ version_requirements: *id004
70
84
  description: These matchers allow you to test what is happening inside the Sunspot Search DSL blocks
71
85
  email: []
72
86