cukesparse 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +6 -14
  2. data/lib/cukesparse.rb +3 -3
  3. metadata +17 -3
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- YWMyMzUwYTIyZDMzNzM3MDNkMjZmNjI0ODU2YjJhNWE4ZGEzNTEzOA==
5
- data.tar.gz: !binary |-
6
- ZGMyMDNhZDE1MTJiMjM1NzQ1MmMxZjlhMGNkZjRjNWQyMmU3NTcyMg==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- OWRiMzc5OTU3Njg4NjhjNmVkM2ZkY2NkZTU2NjdmZWFmNWU5Y2UwN2Y1YmZl
10
- ZjZjNDUyN2RiMzBlODFkM2E5YzNiMjc3YzQzY2NlN2ZmY2IzYWYwMjE3NWYx
11
- M2E1MzY4ODdlMTJmNDY5Y2Y3N2RmN2VjYzE3MzBiMGZjYjg3Mjc=
12
- data.tar.gz: !binary |-
13
- NTI5MmQ2OTc1ZjRhNjViMDA1NjBmNDJjODI2NmM1NGFlMjMyNjhmOTAxYzA0
14
- ZWI5ZWE1YjY1YWI3MWJiOTY2MTlhMTNiNjJjYTdlOTFhN2U2YTY2YmUxNjQz
15
- ODRjYmVhMGZlOTJhY2FmNTFhNzI1NzM5MTI0MWQ2Mjg5YjAyZmI=
2
+ SHA1:
3
+ metadata.gz: fbe8b0959496d4227e9f08fd0f998f9d8a1f7e68
4
+ data.tar.gz: 44696dcbde113ec22bf1b09c74690acf80c18e43
5
+ SHA512:
6
+ metadata.gz: 71f9d20462aa834b605d69b3aad55a7af510de35ccdcb034356791dcc0aa335ca775b7cebb518fe59325d5c038708961a42fcd375f8f2ef8caf98fc5470c1e05
7
+ data.tar.gz: 55d396cc6c2c94d21544a07bd6725daa7c23a49c898d6c33909e8b7a17f9ddef9ebcc7293335551b4d133917f21a1672936f45abdc81af2999c4570a4be9a5dc
data/lib/cukesparse.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'clik'
2
- require 'yaml'
2
+ require 'psych'
3
3
  require 'colored'
4
4
 
5
5
  module Cukesparse
@@ -102,10 +102,10 @@ module Cukesparse
102
102
  # Loads the config file
103
103
  def load_config
104
104
  begin
105
- @config = YAML.load_file(@config_file)
105
+ @config = Psych.load_file(@config_file)
106
106
  rescue Psych::SyntaxError
107
107
  abort 'Your tasks.yml did not parse as expected!'.red.underline
108
- rescue Exception
108
+ rescue Errno::ENOENT
109
109
  abort 'Your tasks.yml file is missing!'.red.underline
110
110
  end
111
111
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cukesparse
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Chrisp
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: cucumber
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: 0.10.5
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 0.10.5
41
55
  description: A simple command line parser to pass arguments into Cucumber
42
56
  email: jonathan.chrisp@gmail.com
43
57
  executables:
@@ -58,12 +72,12 @@ require_paths:
58
72
  - lib
59
73
  required_ruby_version: !ruby/object:Gem::Requirement
60
74
  requirements:
61
- - - ! '>='
75
+ - - '>='
62
76
  - !ruby/object:Gem::Version
63
77
  version: '0'
64
78
  required_rubygems_version: !ruby/object:Gem::Requirement
65
79
  requirements:
66
- - - ! '>='
80
+ - - '>='
67
81
  - !ruby/object:Gem::Version
68
82
  version: '0'
69
83
  requirements: []