swiftype 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,7 @@
1
1
  language: ruby
2
- script: rspec spec/platform_spec.rb
2
+ script: rspec
3
3
  rvm:
4
4
  - 1.8.7
5
5
  - 1.9.3
6
6
  - 2.0.0
7
+ - jruby-19mode
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Swiftype Ruby API Client
2
2
 
3
- [![Build Status](https://travis-ci.org/swiftype/swiftype-rb.png?branch=easy)](https://travis-ci.org/swiftype/swiftype-rb)
3
+ [![Build Status](https://travis-ci.org/swiftype/swiftype-rb.png)](https://travis-ci.org/swiftype/swiftype-rb)
4
4
 
5
5
  This is a simple client for the [Swiftype API](https://swiftype.com/documentation/overview) with no dependencies outside core Ruby (for 1.9 and 2.0; Ruby 1.8 requires the JSON gem).
6
6
 
@@ -35,7 +35,7 @@ module Swiftype
35
35
  if uri.scheme == 'https'
36
36
  http.use_ssl = true
37
37
  http.verify_mode = OpenSSL::SSL::VERIFY_PEER
38
- http.ca_file = File.join(__FILE__, '..', 'data', 'ca-bundle.crt')
38
+ http.ca_file = File.join(File.dirname(__FILE__), '..', 'data', 'ca-bundle.crt')
39
39
  end
40
40
 
41
41
  response = http.request(request)
@@ -1,3 +1,3 @@
1
1
  module Swiftype
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: swiftype
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-09-24 00:00:00.000000000 Z
13
+ date: 2013-09-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rspec