pairwise 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/bin/pairwise +7 -0
  2. data/lib/pairwise.rb +1 -1
  3. metadata +4 -4
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+ $:.unshift(File.dirname(__FILE__) + '/../lib') unless $:.include?(File.dirname(__FILE__) + '/../lib')
3
+
4
+ require 'pairwise'
5
+ require 'pairwise/cli'
6
+
7
+ Pairwise::Cli.execute(ARGV)
@@ -19,7 +19,7 @@ end
19
19
  module Pairwise
20
20
  class InvalidInputData < Exception; end
21
21
 
22
- VERSION = '0.2.0'
22
+ VERSION = '0.2.1'
23
23
 
24
24
  class << self
25
25
  def combinations(*inputs)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 0
9
- version: 0.2.0
8
+ - 1
9
+ version: 0.2.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Joseph Wilk
@@ -43,8 +43,8 @@ dependencies:
43
43
  version_requirements: *id002
44
44
  description: A tool for selecting a smaller number of test combinations (using pairwise generation) rather than exhaustively testing all possible permutations.
45
45
  email: joe@josephwilk.net
46
- executables: []
47
-
46
+ executables:
47
+ - pairwise
48
48
  extensions: []
49
49
 
50
50
  extra_rdoc_files: []