ftest 0.1.0 → 0.1.1

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/ftest +4 -2
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2d6ee01d44002fef117aa809c2817d9ff81eeac2
4
- data.tar.gz: d13bf0a4ba5502a3a671ca0752ea20bc88ffb508
3
+ metadata.gz: 8b936435d56deda1792974d6e8a9b7e6e3268925
4
+ data.tar.gz: a3d68f8cfc0e04898d8383c93fe27c781c6a9deb
5
5
  SHA512:
6
- metadata.gz: 1d5ecd73d2435c9624d95837193d05b287f36186c91a5ad074518c2d86ecb7a1aefc905c202e39a153c92773bd4d048963b6b55d9d597d01562eac8ea767d81c
7
- data.tar.gz: d6aec2df76647153cd02ccaf21f9e5757bb99bbbd660ab0f8d8c1b19bae14e49e6995b9458eafa11d4b23e29839c93efe59f415e1785ac2deb5e392512e24d3b
6
+ metadata.gz: 023ffd02a8feee884bb483284d68f149febb8c4da6612878b6deb6c5a83f824ce500b906ae031f90073d137b3727e228f2c4896561ee5dbb9acf965b4c13c59c
7
+ data.tar.gz: 94fb9e42376f7c2fecca5bc7efc87de17f0e7acdf03ff8a5b0130997e7f4385cc6f097b7e951a1ef58ae74b35033948bd59a2b8814faa6998cc1b0b96db7540b
data/bin/ftest CHANGED
@@ -1,6 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- lib_path = File.expand_path "../../lib", __FILE__
4
- $LOAD_PATH << lib_path unless $LOAD_PATH.include? lib_path
3
+ lib_path = File.join Dir.pwd, "lib"
4
+ if File.directory? lib_path and not $LOAD_PATH.include? lib_path
5
+ $LOAD_PATH << lib_path
6
+ end
5
7
  require "ftest"
6
8
  FTest::CLI.run ARGV
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ftest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Ladd
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-22 00:00:00.000000000 Z
11
+ date: 2015-08-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Fork based runner for tests written as simple ruby scripts
14
14
  email: nathanladd+github@gmail.com