hypothesis-specs 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: e2eece2e1eb0f43151ca4931de4b6a1875d30e4bb6817b12ecdfd6a616389e99
4
- data.tar.gz: ad4e0f15f8114ea29f6aaf1651086f94869cab21180c71f5306ae7ddf1e1a54f
3
+ metadata.gz: 8e514de73ab86bfeae1d5e5801ee47e8865c4a06d90f2053f4318f9dd9df19cb
4
+ data.tar.gz: 1aff7880e50e37ee73f287ac2cd318a9201cf2ba09d45ca79ad9b778eeb2d3bd
5
5
  SHA512:
6
- metadata.gz: b61924af6ab1675ada437e51080033b41cdca3a6f229e4216e72afcece9b809ac9a8ddfe6bf9e5103f6ed968970ca46124df82930e126e6280bc0b83304f5fe2
7
- data.tar.gz: 0da05cda97c2cb11b825daf3183b987c3f48c999013b243f06516116deaaf99d8e8c4c79775d7671434a2af3a4a84dca75cd7cd9215317b83d3523dcc677aecf
6
+ metadata.gz: fef51bf7876fc9b0b27363e8f73f84fa4ffde68a6ac2312b9f70bd780da1dd9a8923eeff14e092679c52d1fc74136a2529ae468a4e748ad021212e391846156b
7
+ data.tar.gz: 1ba9eb0a28cde4f29a127086ecb2fdce722566cc38b3cd4cfc741ec91b704501d293c10b00828ae7efcd4df931e44518e01e312da15b8a55ef0b946573b90c6b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # Hypothesis for Ruby 0.1.2 (2018-09-24)
2
+
3
+ This release makes the code useable via a direct require.
4
+ I.e. no need for rubygems or any special LOAD_PATH.
5
+
6
+ For example, if the base directory were in /opt, you'd just say:
7
+ require "/opt/hypothesis/hypothesis-ruby/lib/hypothesis"
8
+
1
9
  # Hypothesis for Ruby 0.1.1 (2018-08-31)
2
10
 
3
11
  This release fixes minor documentation issues.
data/lib/hypothesis.rb CHANGED
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'hypothesis/junkdrawer'
4
- require 'hypothesis/errors'
5
- require 'hypothesis/possible'
6
- require 'hypothesis/testcase'
7
- require 'hypothesis/engine'
8
- require 'hypothesis/world'
3
+ require_relative 'hypothesis/junkdrawer'
4
+ require_relative 'hypothesis/errors'
5
+ require_relative 'hypothesis/possible'
6
+ require_relative 'hypothesis/testcase'
7
+ require_relative 'hypothesis/engine'
8
+ require_relative 'hypothesis/world'
9
9
 
10
10
  # This is the main module for using Hypothesis.
11
11
  # It is expected that you will include this in your
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'helix_runtime'
4
- require 'hypothesis-ruby/native'
4
+
5
+ require_relative '../hypothesis-ruby/native'
6
+
5
7
  require 'rspec/expectations'
6
8
 
7
9
  module Hypothesis
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hypothesis-specs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David R. Maciver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-31 00:00:00.000000000 Z
11
+ date: 2018-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: helix_runtime