expect-behaviors 0.1.4 → 0.1.5
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 +8 -8
- data/CONTRIBUTING.md +23 -0
- data/VERSION +1 -1
- data/expect-behaviors.gemspec +4 -3
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZWIwNWVjNDBkZDExZTIxMjYxNWUwZmRiMzk3YWNkOWFkZDk5MjI2Ng==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDdmN2UzNGNiNTY3N2EwODFkNzc0M2MzNGNiNjVmMmU4OTFiODY0OA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YTIzZWI3NzYwZWRjZTQ3NWVmNzhjMjg4YzE2NjczMGQ0YzNhZTIxMmM1MGNh
|
|
10
|
+
OWY4MGU5MWNmY2JlZTEwN2ZlZGYwZmFhMDU2NjAyMTdhZmNiMGE5NjNmMzM2
|
|
11
|
+
NzBjMjI4OGU0YWYxYzg3ODhiYzlkNDg3MmYxNDk2MGExYjM4NzE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Y2M3ZmQ4ZTBjM2Y2YjkwYWNiYjZmNmM4MzdmN2I0MjgxY2I3YzhhNzM0YTFl
|
|
14
|
+
MjExYmNmNGFkN2FlYjVhZDgxZWUxZWIwOWRlMDdmZWMwMjhhNGNlYjE4MTRm
|
|
15
|
+
YzIxNTY0NWVmOTkzMGRmOWE1ZWEzNjhlMzA0NDY3Mjg4Mzk5NWQ=
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Contributing to the Expect-Behaviors Gem
|
|
2
|
+
|
|
3
|
+
This gem is run by people who have jobs. So please understand if we can't always prioritize PRs and issues.
|
|
4
|
+
|
|
5
|
+
You can help by making your code submissions. We can't promise a specific turnaround time, or that your code will be incorporated but all submissions are appreciated.
|
|
6
|
+
|
|
7
|
+
## Steps to Submit a Pull Request
|
|
8
|
+
|
|
9
|
+
* [Fork](https://help.github.com/articles/fork-a-repo) the project on GitHub.
|
|
10
|
+
* Make your feature addition or bug fix [in a feature branch](https://github.com/Kunena/Kunena-Forum/wiki/Create-a-new-branch-with-git-and-manage-branches). (Include a description of your changes in the PR)
|
|
11
|
+
* Push your feature branch to GitHub.
|
|
12
|
+
* Send a [Pull Request](https://help.github.com/articles/using-pull-requests)
|
|
13
|
+
|
|
14
|
+
## Style Guide
|
|
15
|
+
|
|
16
|
+
We will require that you adhere to the [ruby-style-guide](https://github.com/bbatsov/ruby-style-guide) for your code submissions.
|
|
17
|
+
|
|
18
|
+
## Test Coverage
|
|
19
|
+
|
|
20
|
+
All submissions of code must include test coverage which describes intent and expected behavior. The test suite used by this gem is [Minitest](https://github.com/seattlerb/minitest)
|
|
21
|
+
|
|
22
|
+
Unit tests are expected to execute quickly. Longer running tests should be filed under Acceptance tests.
|
|
23
|
+
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.5
|
data/expect-behaviors.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: expect-behaviors 0.1.
|
|
5
|
+
# stub: expect-behaviors 0.1.5 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "expect-behaviors"
|
|
9
|
-
s.version =
|
|
9
|
+
s.version = "0.1.5"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Francis Luong (Franco)"]
|
|
14
|
-
s.date =
|
|
14
|
+
s.date = "2016-09-08"
|
|
15
15
|
s.description = "Ruby Mixin to add Expect Behaviors to SSH/Serial/Telnet controllers"
|
|
16
16
|
s.email = "me@francisluong.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -22,6 +22,7 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
".document",
|
|
23
23
|
".ruby-version",
|
|
24
24
|
".travis.yml",
|
|
25
|
+
"CONTRIBUTING.md",
|
|
25
26
|
"Gemfile",
|
|
26
27
|
"Gemfile.lock",
|
|
27
28
|
"LICENSE",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: expect-behaviors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Francis Luong (Franco)
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-09-
|
|
11
|
+
date: 2016-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-ssh
|
|
@@ -197,6 +197,7 @@ files:
|
|
|
197
197
|
- .document
|
|
198
198
|
- .ruby-version
|
|
199
199
|
- .travis.yml
|
|
200
|
+
- CONTRIBUTING.md
|
|
200
201
|
- Gemfile
|
|
201
202
|
- Gemfile.lock
|
|
202
203
|
- LICENSE
|