snowy_owl 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c72a2f1a1a15005f141d3e520b259047733dcf06
4
+ data.tar.gz: 225d86b735a628217e75aa64fce9d3ca8fa9f5b4
5
+ SHA512:
6
+ metadata.gz: 66eeaf97e58dbc87906d51fb91bb052ed384d11966537923dfe8041d3fc93088fa3de12d87c45cfbe768fca8fe28005039d352f7aca2efc44bb8dab3780a83b2
7
+ data.tar.gz: 940f890c0467cf17571d07dbad138b8e898d540665f8f0df1eb2c7d21057e8e5e77ba606831e739dd0517e4040d83666886c4b39cd17affc1b6a764495571b33
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.1
5
+ before_install: gem install bundler -v 1.15.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at hanystudy@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+ source "https://rubygems.org"
3
+
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,38 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ snowy_owl (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.3)
10
+ rake (10.5.0)
11
+ rspec (3.6.0)
12
+ rspec-core (~> 3.6.0)
13
+ rspec-expectations (~> 3.6.0)
14
+ rspec-mocks (~> 3.6.0)
15
+ rspec-core (3.6.0)
16
+ rspec-support (~> 3.6.0)
17
+ rspec-expectations (3.6.0)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.6.0)
20
+ rspec-mocks (3.6.0)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.6.0)
23
+ rspec-rerun (1.1.0)
24
+ rspec (~> 3.0)
25
+ rspec-support (3.6.0)
26
+
27
+ PLATFORMS
28
+ ruby
29
+
30
+ DEPENDENCIES
31
+ bundler (~> 1.15)
32
+ rake (~> 10.0)
33
+ rspec (~> 3.0)
34
+ rspec-rerun (~> 1.1)
35
+ snowy_owl!
36
+
37
+ BUNDLED WITH
38
+ 1.15.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Yi Han
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,69 @@
1
+ # SnowyOwl
2
+
3
+ Owl exploratory testing.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'snowy_owl'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install snowy_owl
20
+
21
+ ## Usage
22
+
23
+ Make sure you have directory structure like below:
24
+
25
+ ```markdown
26
+ your_test_directory/
27
+ ├── props/
28
+ ├── determinations/
29
+ ├── plots/
30
+ ├── play_books/
31
+ └── play.rb
32
+ ```
33
+
34
+ Add this line to play.rb:
35
+
36
+ ```ruby
37
+ require 'snowy_owl'
38
+
39
+ SnowyOwl.play
40
+ ```
41
+
42
+ ### Used with RSpec
43
+
44
+ Use play_spec.rb instead of play.rb, and add this line to play_spec.rb:
45
+
46
+ ```ruby
47
+ require 'spec_helper'
48
+ require 'snowy_owl/rspec'
49
+
50
+ SnowyOwl.play
51
+ ```
52
+
53
+ ## Development
54
+
55
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
56
+
57
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
58
+
59
+ ## Contributing
60
+
61
+ Bug reports and pull requests are welcome on GitHub at https://github.com/hanystudy/snowy_owl. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
62
+
63
+ ## License
64
+
65
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
66
+
67
+ ## Code of Conduct
68
+
69
+ Everyone interacting in the SnowyOwl project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/hanystudy/snowy_owl/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "snowy_owl"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,37 @@
1
+ module SnowyOwl
2
+ class Config
3
+
4
+ OPTIONS = [
5
+ :props_path,
6
+ :determine_context,
7
+ :determinations_path,
8
+ :play_books_path,
9
+ :is_persisting,
10
+ :is_recovering,
11
+ :persist_path,
12
+ :plots_path,
13
+ :persist_callback,
14
+ :recover_callback,
15
+ ]
16
+
17
+ attr_accessor :props_path, :determinations_path, :play_books_path
18
+ attr_accessor :is_persisting, :is_recovering, :persist_path, :plots_path
19
+
20
+ def determine_context key, &determine_block
21
+ @determine_context ||= {}
22
+ if block_given?
23
+ @determine_context[key] = determine_block
24
+ else
25
+ @determine_context[key]
26
+ end
27
+ end
28
+
29
+ def persist_callback &block
30
+ @persist_callback = block || @persist_callback
31
+ end
32
+
33
+ def recover_callback &block
34
+ @recover_callback = block || @recover_callback
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,22 @@
1
+ require 'json'
2
+ require 'ostruct'
3
+
4
+ module SnowyOwl
5
+ module Determinations
6
+
7
+ def self.determine name, &block
8
+ SnowyOwl.determine_context SnowyOwl::Support.to_underscore(name).to_sym, &block
9
+ end
10
+
11
+ def method_missing(name, *args, &block)
12
+ context_key = name.to_s.gsub /determine_/, ''
13
+ determine_context = SnowyOwl.determine_context context_key.downcase.to_sym
14
+ if determine_context.nil?
15
+ super(name, *args, &block)
16
+ else
17
+ args.unshift context_key.tr('_', ' ')
18
+ instance_exec(*args, &determine_context)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,25 @@
1
+ require 'json'
2
+ require 'ostruct'
3
+ require 'fileutils'
4
+
5
+ module SnowyOwl
6
+ module Persist
7
+
8
+ class << self
9
+ def persist_state(plot_name)
10
+ plot_name_path = SnowyOwl::Support.to_underscore plot_name
11
+ path = SnowyOwl.persist_path + '/.tmp/' + plot_name_path
12
+ FileUtils::mkdir_p path
13
+ args = [plot_name_path, path]
14
+ SnowyOwl.persist_callback.call(args)
15
+ end
16
+
17
+ def recover_state(plot_name)
18
+ plot_name_path = SnowyOwl::Support.to_underscore plot_name
19
+ path = SnowyOwl.persist_path + plot_name_path
20
+ args = [plot_name_path, path]
21
+ SnowyOwl.recover_callback.call(args)
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,21 @@
1
+ module SnowyOwl
2
+ module Plots
3
+
4
+ class << self
5
+
6
+ def write(plot_name, &block)
7
+ proc = Proc.new do |*args|
8
+ extend SnowyOwl::Props
9
+ extend SnowyOwl::Determinations
10
+ instance_exec(*args, &block)
11
+ end
12
+ @__plots__ ||= {}
13
+ @__plots__[plot_name] = proc
14
+ end
15
+
16
+ def plot plot_name
17
+ @__plots__[plot_name]
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,25 @@
1
+ require 'json'
2
+ require 'ostruct'
3
+ require 'yaml'
4
+
5
+ module SnowyOwl
6
+ module Props
7
+
8
+ def init_props
9
+ props_path = SnowyOwl.props_path
10
+ raise RuntimeError.new 'Invalid props path' if props_path.empty?
11
+ props_hash = {}
12
+ Dir[props_path].each do |f|
13
+ field_name = File.basename f, '.yml'
14
+ props_hash[field_name] = YAML.load_file(f)
15
+ end
16
+ @__props__ = JSON.parse(props_hash.to_json, object_class: OpenStruct)
17
+ end
18
+
19
+ def method_missing(name, *args, &block)
20
+ @__props__ ||= init_props
21
+ return @__props__.send name if @__props__.respond_to? name
22
+ super name, *args, &block
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,32 @@
1
+ require 'rspec-rerun/tasks'
2
+
3
+ module RSpec
4
+ module Rerun
5
+ class Formatter
6
+ def retry_command(example)
7
+ example.description
8
+ end
9
+ end
10
+
11
+ module Tasks
12
+ class << self
13
+ def spec_files
14
+ File.read(RSpec::Rerun::Formatter::FILENAME)
15
+ end
16
+
17
+ def failing_specs
18
+ [SnowyOwl.spec_file]
19
+ end
20
+
21
+ def failed_count
22
+ spec_files.split("\n").count
23
+ end
24
+
25
+ def rerun(args)
26
+ ENV['PLOTS_SCOPE'] = spec_files
27
+ Rake::Task['rspec-rerun:rerun'].execute(args)
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,52 @@
1
+ require 'snowy_owl/rspec/rerun'
2
+
3
+ module SnowyOwl
4
+ class Config
5
+ alias_options = OPTIONS
6
+ alias_options << :spec_file
7
+ remove_const :OPTIONS
8
+ const_set :OPTIONS, alias_options.uniq
9
+
10
+ attr_accessor :spec_file
11
+ end
12
+
13
+ module Plots
14
+ class << self
15
+ alias :old_write :write
16
+
17
+ def write(plot_name, &block)
18
+ proc = old_write plot_name, &block
19
+ RSpec.shared_examples plot_name do
20
+ scenario plot_name, &proc
21
+ end
22
+ end
23
+ end
24
+ end
25
+
26
+ def self.play *args
27
+ RSpec.feature *args do
28
+ Dir[SnowyOwl.plots_path].each { |f| require f }
29
+ Dir[SnowyOwl.determinations_path].each { |f| require f }
30
+
31
+ before do |plot|
32
+ SnowyOwl::Persist.recover_state plot.description if SnowyOwl.is_recovering
33
+ SnowyOwl::Persist.persist_state plot.description if SnowyOwl.is_persisting
34
+ end
35
+
36
+ candidate_play_books = Dir[SnowyOwl.play_books_path]
37
+
38
+ candidate_play_books.each do |play_book|
39
+ candidate_plots = YAML.load_file(play_book)
40
+ plots_scope = ENV['PLOTS_SCOPE']
41
+ if plots_scope.present?
42
+ SnowyOwl.is_recovering = true
43
+ scope = plots_scope.split("\n")
44
+ candidate_plots = candidate_plots.select {|plot| scope.include? plot['plot_name']}
45
+ end
46
+ candidate_plots.each do |plot|
47
+ it_behaves_like plot['plot_name']
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,9 @@
1
+ module SnowyOwl
2
+ module Support
3
+ # Avoid conflict with other libraries when using open class for compatibility
4
+ # refine can be well supported in ruby 2.3.0 and above
5
+ def self.to_underscore(str)
6
+ str.downcase.tr(' ', '_')
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module SnowyOwl
2
+ VERSION = "0.1.0"
3
+ end
data/lib/snowy_owl.rb ADDED
@@ -0,0 +1,71 @@
1
+ require 'forwardable'
2
+ require 'yaml'
3
+ require 'snowy_owl/support'
4
+ require 'snowy_owl/config'
5
+
6
+ module SnowyOwl
7
+ class OwlField
8
+ def play *args, &block
9
+ instance_exec *args, &block
10
+ end
11
+
12
+ def sequence_run candidate_play_books
13
+ candidate_play_books.each do |play_book|
14
+ candidate_plots = YAML.load_file(play_book)
15
+ plots_scope = ENV['PLOTS_SCOPE']
16
+ unless plots_scope.nil?
17
+ SnowyOwl.is_recovering = true
18
+ scope = plots_scope.split("\n")
19
+ candidate_plots = candidate_plots.select {|plot| scope.include? plot['plot_name']}
20
+ end
21
+ candidate_plots.each do |plot|
22
+ plot_name = plot['plot_name']
23
+ SnowyOwl::Persist.recover_state plot_name if SnowyOwl.is_recovering
24
+ SnowyOwl::Persist.persist_state plot_name if SnowyOwl.is_persisting
25
+ instance_exec plot_name, &SnowyOwl::Plots.plot(plot_name)
26
+ end
27
+ end
28
+ end
29
+ end
30
+
31
+ class << self
32
+ extend Forwardable
33
+
34
+ SnowyOwl::Config::OPTIONS.each do |method|
35
+ def_delegators :config, "#{method}=" , "#{method}="
36
+ def_delegators :config, method, method
37
+ end
38
+
39
+ def configure
40
+ yield self.config
41
+ end
42
+
43
+ def config
44
+ @config ||= SnowyOwl::Config.new
45
+ end
46
+
47
+ def play
48
+ owl_field = OwlField.new
49
+ owl_field.play 'Snowy Owl' do
50
+ Dir[SnowyOwl.plots_path].each { |f| require f }
51
+ Dir[SnowyOwl.determinations_path].each { |f| require f }
52
+ sequence_run Dir[SnowyOwl.play_books_path]
53
+ end
54
+ end
55
+ end
56
+ end
57
+
58
+ SnowyOwl.configure do |config|
59
+ config.props_path = ''
60
+ config.determinations_path = ''
61
+ config.plots_path = ''
62
+ config.play_books_path = ''
63
+ config.is_persisting = false
64
+ config.is_recovering = false
65
+ config.persist_path = ''
66
+ end
67
+
68
+ require 'snowy_owl/persist'
69
+ require 'snowy_owl/plots'
70
+ require 'snowy_owl/props'
71
+ require 'snowy_owl/determinations'
data/snowy_owl.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "snowy_owl/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "snowy_owl"
8
+ spec.version = SnowyOwl::VERSION
9
+ spec.authors = ["Yi Han"]
10
+ spec.email = ["hanystudy@gmail.com"]
11
+
12
+ spec.summary = %q{Owl exploratory testing}
13
+ spec.homepage = "https://github.com/hanystudy/snowy_owl"
14
+ spec.license = "MIT"
15
+
16
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
18
+ if spec.respond_to?(:metadata)
19
+ else
20
+ raise "RubyGems 2.0 or newer is required to protect against " \
21
+ "public gem pushes."
22
+ end
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
25
+ f.match(%r{^(test|spec|features)/})
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_development_dependency "bundler", "~> 1.15"
32
+ spec.add_development_dependency "rake", "~> 10.0"
33
+ spec.add_development_dependency "rspec", "~> 3.0"
34
+ spec.add_development_dependency "rspec-rerun", "~> 1.1"
35
+ end
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: snowy_owl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Yi Han
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-07-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec-rerun
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.1'
69
+ description:
70
+ email:
71
+ - hanystudy@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - CODE_OF_CONDUCT.md
80
+ - Gemfile
81
+ - Gemfile.lock
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - bin/console
86
+ - bin/setup
87
+ - lib/snowy_owl.rb
88
+ - lib/snowy_owl/config.rb
89
+ - lib/snowy_owl/determinations.rb
90
+ - lib/snowy_owl/persist.rb
91
+ - lib/snowy_owl/plots.rb
92
+ - lib/snowy_owl/props.rb
93
+ - lib/snowy_owl/rspec.rb
94
+ - lib/snowy_owl/rspec/rerun.rb
95
+ - lib/snowy_owl/support.rb
96
+ - lib/snowy_owl/version.rb
97
+ - snowy_owl.gemspec
98
+ homepage: https://github.com/hanystudy/snowy_owl
99
+ licenses:
100
+ - MIT
101
+ metadata: {}
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubyforge_project:
118
+ rubygems_version: 2.6.11
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: Owl exploratory testing
122
+ test_files: []