snowy_owl 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.
- checksums.yaml +4 -4
- data/Gemfile.lock +17 -0
- data/README.md +10 -2
- data/lib/snowy_owl/config.rb +2 -0
- data/lib/snowy_owl/version.rb +1 -1
- data/snowy_owl.gemspec +1 -0
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9eaf4ce4ff3de1d38824a24ea5481aae0900d95a
|
4
|
+
data.tar.gz: 338081cd8d741892b459ead3974a7d0066d95489
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48eff7e9d479feb30a0113b9d97a06d04e9862bb49fd01a68d9b1ee1a8da90297aea72828c3aa33e44d445bef0a3ba244af2c85c913ddcf6721b74c327e35dd7
|
7
|
+
data.tar.gz: e200ff109acdc1772329498711fcb0162dd8a58d63d199979ebe9682e2537ec54f27ff9eb12fe644f6e85226f2cf6af939d4e44bf8e88eb73157444d6f9f45f6
|
data/Gemfile.lock
CHANGED
@@ -6,7 +6,14 @@ PATH
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
+
ast (2.3.0)
|
9
10
|
diff-lcs (1.3)
|
11
|
+
parallel (1.11.2)
|
12
|
+
parser (2.4.0.0)
|
13
|
+
ast (~> 2.2)
|
14
|
+
powerpack (0.1.1)
|
15
|
+
rainbow (2.2.2)
|
16
|
+
rake
|
10
17
|
rake (10.5.0)
|
11
18
|
rspec (3.6.0)
|
12
19
|
rspec-core (~> 3.6.0)
|
@@ -23,6 +30,15 @@ GEM
|
|
23
30
|
rspec-rerun (1.1.0)
|
24
31
|
rspec (~> 3.0)
|
25
32
|
rspec-support (3.6.0)
|
33
|
+
rubocop (0.49.1)
|
34
|
+
parallel (~> 1.10)
|
35
|
+
parser (>= 2.3.3.1, < 3.0)
|
36
|
+
powerpack (~> 0.1)
|
37
|
+
rainbow (>= 1.99.1, < 3.0)
|
38
|
+
ruby-progressbar (~> 1.7)
|
39
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
40
|
+
ruby-progressbar (1.8.1)
|
41
|
+
unicode-display_width (1.3.0)
|
26
42
|
|
27
43
|
PLATFORMS
|
28
44
|
ruby
|
@@ -32,6 +48,7 @@ DEPENDENCIES
|
|
32
48
|
rake (~> 10.0)
|
33
49
|
rspec (~> 3.0)
|
34
50
|
rspec-rerun (~> 1.1)
|
51
|
+
rubocop (~> 0.49.1)
|
35
52
|
snowy_owl!
|
36
53
|
|
37
54
|
BUNDLED WITH
|
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# SnowyOwl
|
2
2
|
|
3
|
-
|
3
|
+
[](https://codeclimate.com/github/hanystudy/snowy_owl)
|
4
|
+
|
5
|
+
Owl exploratory testing. Go to [SnowyOwl Wiki](https://github.com/hanystudy/snowy_owl/wiki) for background story and concepts.
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
@@ -41,11 +43,17 @@ SnowyOwl.play
|
|
41
43
|
|
42
44
|
### Used with RSpec
|
43
45
|
|
46
|
+
Add this to spec_helper.rb:
|
47
|
+
|
48
|
+
```ruby
|
49
|
+
require 'snowy_owl'
|
50
|
+
require 'snowy_owl/rspec'
|
51
|
+
```
|
52
|
+
|
44
53
|
Use play_spec.rb instead of play.rb, and add this line to play_spec.rb:
|
45
54
|
|
46
55
|
```ruby
|
47
56
|
require 'spec_helper'
|
48
|
-
require 'snowy_owl/rspec'
|
49
57
|
|
50
58
|
SnowyOwl.play
|
51
59
|
```
|
data/lib/snowy_owl/config.rb
CHANGED
@@ -12,10 +12,12 @@ module SnowyOwl
|
|
12
12
|
:plots_path,
|
13
13
|
:persist_callback,
|
14
14
|
:recover_callback,
|
15
|
+
:spec_file
|
15
16
|
]
|
16
17
|
|
17
18
|
attr_accessor :props_path, :determinations_path, :play_books_path
|
18
19
|
attr_accessor :is_persisting, :is_recovering, :persist_path, :plots_path
|
20
|
+
attr_accessor :spec_file
|
19
21
|
|
20
22
|
def determine_context key, &determine_block
|
21
23
|
@determine_context ||= {}
|
data/lib/snowy_owl/version.rb
CHANGED
data/snowy_owl.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snowy_owl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yi Han
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-07-
|
11
|
+
date: 2017-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '1.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.49.1
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.49.1
|
69
83
|
description:
|
70
84
|
email:
|
71
85
|
- hanystudy@gmail.com
|