test_workflow 0.1.0 → 0.2.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 +4 -4
- data/README.md +3 -3
- data/lib/test_workflow/version.rb +1 -1
- data/test_workflow.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f307923d386d514afb86644297758f77d7eb0c71
|
|
4
|
+
data.tar.gz: 4647210a3ff5e4143b3726101886fa3c54f75311
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ecebbc85a3c08724f9206d327dc6be4a08060adbba35bc347918c64eed01b3c8b2174699779fc23f6cf6a9b642b06cf175973020aef257b1a54bf93aecd0220
|
|
7
|
+
data.tar.gz: a593c0918971ed4212431c1269fe19a32ef11f8a6c14c9e85c6b799155806cc35597c746256749e6b93989e727b6bb441237e6dbe5898aa8fa6a192a683b97fa
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# TestWorkflow
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/test_workflow)
|
|
4
|
-
[](https://github.com/
|
|
4
|
+
[](https://github.com/jeffnyman/test_workflow/blob/master/LICENSE.txt)
|
|
5
5
|
|
|
6
6
|
TestWorkflow implements the idea of traversing a set of activities in the context of a user workflow.
|
|
7
7
|
|
|
@@ -235,7 +235,7 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
235
235
|
|
|
236
236
|
## Contributing
|
|
237
237
|
|
|
238
|
-
Bug reports and pull requests are welcome on GitHub at [https://github.com/
|
|
238
|
+
Bug reports and pull requests are welcome on GitHub at [https://github.com/jeffnyman/test_workflow](https://github.com/jeffnyman/test_workflow). The testing ecosystem of Ruby is very large and this project is intended to be a welcoming arena for collaboration on yet another testing tool. As such, contributors are very much welcome but are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
239
239
|
|
|
240
240
|
To contribute to TestWorkflow:
|
|
241
241
|
|
|
@@ -256,5 +256,5 @@ This code is loosely based upon the [PageNavigation](https://github.com/cheezy/p
|
|
|
256
256
|
## License
|
|
257
257
|
|
|
258
258
|
TestWorkflow is distributed under the [MIT](http://www.opensource.org/licenses/MIT) license.
|
|
259
|
-
See the [LICENSE](https://github.com/
|
|
259
|
+
See the [LICENSE](https://github.com/jeffnyman/test_workflow/blob/master/LICENSE.txt) file for details.
|
|
260
260
|
|
data/test_workflow.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Chains classes and methods as a path to execute in a workflow.}
|
|
13
13
|
spec.description = %q{Chains classes and methods as a path to execute in a workflow.}
|
|
14
|
-
spec.homepage = "https://github.com/
|
|
14
|
+
spec.homepage = "https://github.com/jeffnyman/test_workflow"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test_workflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeff Nyman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -102,12 +102,12 @@ files:
|
|
|
102
102
|
- lib/test_workflow.rb
|
|
103
103
|
- lib/test_workflow/version.rb
|
|
104
104
|
- test_workflow.gemspec
|
|
105
|
-
homepage: https://github.com/
|
|
105
|
+
homepage: https://github.com/jeffnyman/test_workflow
|
|
106
106
|
licenses:
|
|
107
107
|
- MIT
|
|
108
108
|
metadata: {}
|
|
109
109
|
post_install_message: "\n(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n
|
|
110
|
-
\ TestWorkflow 0.
|
|
110
|
+
\ TestWorkflow 0.2.0 has been installed.\n(::) (::) (::) (::) (::) (::) (::) (::)
|
|
111
111
|
(::) (::) (::) (::)\n "
|
|
112
112
|
rdoc_options: []
|
|
113
113
|
require_paths:
|