rsolr 2.0.0.pre3 → 2.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 452ea2927fbbb82cad4aba0948007a0e6cf1bd13
4
- data.tar.gz: 7cbed4e5da8b29a69c3f8004f29a91de9d299fcb
3
+ metadata.gz: 226997d67900e53aa9c7d1c98c319bd004e6b5dc
4
+ data.tar.gz: db181b0c8c051f8cc698b1b7ad2f16f9693ae8e0
5
5
  SHA512:
6
- metadata.gz: 5abc10f76135922d1f5ce642efa245b20bf29ac01432d6dfbf8f053944b60d70fe76db2dac7eec41d35b72a8fff66cff6b98a11b449d2796243df111eb06c4bd
7
- data.tar.gz: 5b096b2d49a2721c86cef3d879bca8d806234c8a5f1784b9686e5ae0c39873a048cb6affb0f6f73918eaf2a771cc8e04041320ec9df75e76bd41a11cc03a60af
6
+ metadata.gz: c373a31d7d961bb28399aa99196c2f5515fba6c00f6848dd928abfdc7cdd92ffcaee2189393620c1c1fe603837c1d7e7480cf37df233755266cab343041436c8
7
+ data.tar.gz: e1746cb6ddfca7dc6d1a4f56af4660098dc24e92a7b12854362b8c711bcbe85798ca6ced110cfc60797effd647151d2e2056af552189cd8fd7add5add5080739
data/lib/rsolr/json.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  require 'json'
2
- require 'rsolr/generator'
3
2
 
4
3
  module RSolr::JSON
5
4
  class Generator < RSolr::Generator
data/lib/rsolr/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module RSolr
2
- VERSION = "2.0.0.pre3"
2
+ VERSION = "2.0.0.rc1"
3
3
 
4
4
  def self.version
5
5
  VERSION
data/lib/rsolr/xml.rb CHANGED
@@ -1,5 +1,3 @@
1
- require 'rsolr/generator'
2
- require 'rsolr/document'
3
1
  module RSolr::Xml
4
2
  Document = RSolr::Document
5
3
  Field = RSolr::Field
data/lib/rsolr.rb CHANGED
@@ -1,5 +1,17 @@
1
1
  module RSolr
2
- Dir.glob(File.expand_path("../rsolr/*.rb", __FILE__)).each{|rb_file| require(rb_file)}
2
+ require 'rsolr/version'
3
+
4
+ autoload :Char, 'rsolr/char'
5
+ autoload :Client, 'rsolr/client'
6
+ autoload :Document, 'rsolr/document'
7
+ autoload :Error, 'rsolr/error'
8
+ autoload :Field, 'rsolr/field'
9
+ autoload :Generator, 'rsolr/generator'
10
+ autoload :HashWithResponse, 'rsolr/response'
11
+ autoload :JSON, 'rsolr/json'
12
+ autoload :Response, 'rsolr/response'
13
+ autoload :Uri, 'rsolr/uri'
14
+ autoload :Xml, 'rsolr/xml'
3
15
 
4
16
  def self.connect *args
5
17
  opts = args.pop if args.last.is_a?(::Hash)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rsolr
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre3
4
+ version: 2.0.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antoine Latter
@@ -29,7 +29,7 @@ authors:
29
29
  autorequire:
30
30
  bindir: bin
31
31
  cert_chain: []
32
- date: 2017-02-24 00:00:00.000000000 Z
32
+ date: 2017-03-03 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: builder