sunspot_rails 2.2.5 → 2.2.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b486e494f2f1a9cb4e2ae5a48020ff25ad4df89e
4
- data.tar.gz: d8895bf88c97f05fbad3c6e17b49b0c8f7fe37ec
3
+ metadata.gz: e0ce283378203c1a9f3bdccf1670ee3f10ff7e55
4
+ data.tar.gz: 9c888704f1b8150db2ec3f3f2c8f18caabb3b051
5
5
  SHA512:
6
- metadata.gz: 91fc7586cb8fd9dbe7dcfdf0d9fe61b2effdf196085f442b475ff791c7bc7e3fc0f5147f8c9877f8cc1fd6f71d997e891a28316ffa7d2bb7e9e6fb753a90affb
7
- data.tar.gz: 5c71e44309d9b8d2949950a521b22d232e05e260a8010db22194c2ea394c5f6fa85715467c2f38652373b27a55c75ab0e91c70edbe8ba66601e1e4ab08bbde85
6
+ metadata.gz: 630ae3479120da9bc341c3a6b4a0bd5c170c44bbab0b00329901f871344ec07f59834c6d8b7dee519f7145b7478705a6c65391c9a91179da9a673e87871dba8d
7
+ data.tar.gz: 6b8d86ad3397a93422b5eb67401aa682ebf2a498c7bef90e45d8eadf0479ff0a7839402f1555ed02b8c96d6260ec16d0a44a2e2ec8628ae0691674eabef0aad6
@@ -9,12 +9,13 @@ gem 'sunspot_rails', :path => File.expand_path('../..', __FILE__)
9
9
  group :test do
10
10
  gem 'rspec-rails', '~> 2.14.0'
11
11
  gem 'progress_bar', '~> 1.0.5', require: false
12
+ gem 'test-unit', '~> 3.2.0' if RUBY_VERSION >= '2.2.0'
12
13
  end
13
14
 
14
15
  group :postgres do
15
- gem 'pg'
16
+ gem 'pg'
16
17
  end
17
18
 
18
19
  group :sqlite do
19
- gem 'sqlite3', '~> 1.3.7'
20
- end
20
+ gem 'sqlite3', '~> 1.3.7'
21
+ end
@@ -9,12 +9,13 @@ gem 'sunspot_rails', :path => File.expand_path('../..', __FILE__)
9
9
  group :test do
10
10
  gem 'rspec-rails', '~> 2.14.0'
11
11
  gem 'progress_bar', '~> 1.0.5', require: false
12
+ gem 'test-unit', '~> 3.2.0' if RUBY_VERSION >= '2.2.0'
12
13
  end
13
14
 
14
15
  group :postgres do
15
- gem 'pg'
16
+ gem 'pg'
16
17
  end
17
18
 
18
19
  group :sqlite do
19
- gem 'sqlite3', '~> 1.3.7'
20
- end
20
+ gem 'sqlite3', '~> 1.3.7'
21
+ end
@@ -9,12 +9,13 @@ gem 'sunspot_rails', :path => File.expand_path('../..', __FILE__)
9
9
  group :test do
10
10
  gem 'rspec-rails', '~> 2.14.0'
11
11
  gem 'progress_bar', '~> 1.0.5', require: false
12
+ gem 'test-unit', '~> 3.2.0' if RUBY_VERSION >= '2.2.0'
12
13
  end
13
14
 
14
15
  group :postgres do
15
- gem 'pg'
16
+ gem 'pg'
16
17
  end
17
18
 
18
19
  group :sqlite do
19
- gem 'sqlite3', '~> 1.3.7'
20
- end
20
+ gem 'sqlite3', '~> 1.3.7'
21
+ end
@@ -1,21 +1,25 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
3
  gem 'rails', '~> 4.0.0'
4
+ if SystemRubyVersion.new.to_s =~ /1.9/
5
+ gem 'mime-types', '~> 2.99.0'
6
+ end
4
7
 
5
8
  gem 'sunspot', :path => File.expand_path('../../../sunspot', __FILE__)
6
9
  gem 'sunspot_solr', :path => File.expand_path('../../../sunspot_solr', __FILE__)
7
10
  gem 'sunspot_rails', :path => File.expand_path('../..', __FILE__)
8
11
 
9
12
  group :test do
10
- gem 'protected_attributes' # Rails 4 support for attr_accessor so specs still work
13
+ gem 'protected_attributes' # Rails 4 support for attr_accessor so specs still work
11
14
  gem 'rspec-rails', '~> 2.14.0'
12
15
  gem 'progress_bar', '~> 1.0.5', require: false
16
+ gem 'test-unit', '~> 3.2.0' if RUBY_VERSION >= '2.2.0'
13
17
  end
14
18
 
15
19
  group :postgres do
16
- gem 'pg'
20
+ gem 'pg'
17
21
  end
18
22
 
19
23
  group :sqlite do
20
- gem 'sqlite3', '~> 1.3.7'
21
- end
24
+ gem 'sqlite3', '~> 1.3.7'
25
+ end
@@ -1,6 +1,9 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
3
  gem 'rails', '~> 4.1.0'
4
+ if SystemRubyVersion.new.to_s =~ /1.9/
5
+ gem 'mime-types', '~> 2.99.0'
6
+ end
4
7
 
5
8
  gem 'sunspot', :path => File.expand_path('../../../sunspot', __FILE__)
6
9
  gem 'sunspot_solr', :path => File.expand_path('../../../sunspot_solr', __FILE__)
@@ -1,6 +1,9 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
3
  gem 'rails', '~> 4.2.0'
4
+ if SystemRubyVersion.new.to_s =~ /1.9/
5
+ gem 'mime-types', '~> 2.99.0'
6
+ end
4
7
 
5
8
  gem 'sunspot', :path => File.expand_path('../../../sunspot', __FILE__)
6
9
  gem 'sunspot_solr', :path => File.expand_path('../../../sunspot_solr', __FILE__)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sunspot_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.5
4
+ version: 2.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mat Brown
@@ -26,7 +26,7 @@ authors:
26
26
  autorequire:
27
27
  bindir: bin
28
28
  cert_chain: []
29
- date: 2016-03-05 00:00:00.000000000 Z
29
+ date: 2016-09-01 00:00:00.000000000 Z
30
30
  dependencies:
31
31
  - !ruby/object:Gem::Dependency
32
32
  name: rails
@@ -48,14 +48,14 @@ dependencies:
48
48
  requirements:
49
49
  - - '='
50
50
  - !ruby/object:Gem::Version
51
- version: 2.2.5
51
+ version: 2.2.6
52
52
  type: :runtime
53
53
  prerelease: false
54
54
  version_requirements: !ruby/object:Gem::Requirement
55
55
  requirements:
56
56
  - - '='
57
57
  - !ruby/object:Gem::Version
58
- version: 2.2.5
58
+ version: 2.2.6
59
59
  - !ruby/object:Gem::Dependency
60
60
  name: nokogiri
61
61
  requirement: !ruby/object:Gem::Requirement