matest 1.5.1 → 1.5.2

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: f75296118bc928285c5a35d2eb9686c43497d0f5
4
- data.tar.gz: d2fc9a83cdd9be0d6585aa006ff9729651e61e85
3
+ metadata.gz: ddee0926bcefaf6e0acacfebc26d28fe557c0b92
4
+ data.tar.gz: 422c64d8e865c8696f92fb1cd9bd05e511e4bcd5
5
5
  SHA512:
6
- metadata.gz: 06faaab752149440c62adfb0eda13b15f1336d57751e9f167d26d2e0abb024264f89416db3d8ad3b9f5f0cc98e530faa6ac9ac3945a0794e94c71aeba3fcf7c7
7
- data.tar.gz: f307f845e75f2acf244fb64bc149e1c3e1790885ab3c85b3de307960414b8526670f6e8dabe4e55063f6f28d35041eaf035751bbe72c9beefa31ed2a69d279db
6
+ metadata.gz: e57626d838282b596f8b85eb6a6cc4d8625bcea48b276c861a066a5eb7708d3de27e67054bfb9ca8b0300f435ef40d77c0f78433d38e50337693f34373458aca
7
+ data.tar.gz: 2277d5af784b2280ed165b11dc32678dacfcff93d8a68ddecbf342015c3eb8e1f8977f227b87a57dd3a7a90d2b62fd6797f5b73e38b1feb74a89993702ea0c32
data/bin/matest CHANGED
@@ -3,11 +3,12 @@
3
3
  require "time"
4
4
  start_time = Time.now
5
5
 
6
- if File.exist?(File.expand_path('../../spec', __FILE__))
7
- $LOAD_PATH.unshift(File.expand_path('../../spec', __FILE__))
6
+ if File.exist?(File.expand_path("./spec/", Dir.pwd))
7
+ $LOAD_PATH.unshift(File.expand_path("./spec/", Dir.pwd))
8
8
  end
9
- if File.exist?(File.expand_path('../../test', __FILE__))
10
- $LOAD_PATH.unshift(File.expand_path('../../test', __FILE__))
9
+
10
+ if File.exist?(File.expand_path("./test/", Dir.pwd))
11
+ $LOAD_PATH.unshift(File.expand_path("./test/", Dir.pwd))
11
12
  end
12
13
 
13
14
  require "matest"
@@ -20,7 +20,7 @@ module Matest
20
20
  end
21
21
 
22
22
  def load_file(file)
23
- load(file)
23
+ require(file)
24
24
  end
25
25
 
26
26
  def execute!
@@ -1,3 +1,3 @@
1
1
  module Matest
2
- VERSION = "1.5.1"
2
+ VERSION = "1.5.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: matest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Federico Iachetti