guard-busted 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +1 -1
- data/README.md +5 -4
- data/lib/guard/busted.rb +1 -1
- data/lib/guard/busted/templates/Guardfile +1 -1
- data/lib/guard/busted/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: efc40f8d7f888ff2ddc23151dc349fabd17766fcfebd45c2a11a494090791e09
|
4
|
+
data.tar.gz: 9c8382d3231ade2e55052b8532f9cd7327ce11153a4a71aa51682ac2e1c15329
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4494e45c2456e976b52db00dd99ec04c22521d1c55c8ef13b6ad289bff33782c8d69465a1f74e0ae93d1701eb8d8b297346c6a1ba9e19876ba30b152a1f86b8d
|
7
|
+
data.tar.gz: 6ea5249644f5e71200416e515bc71241d1d48dc112f2d19b294fb1f4dbef73f64e7eb7993d17c611daaad6a169633c55219a238ecc4325c2f9232a45ab8a1426
|
data/.travis.yml
CHANGED
@@ -7,7 +7,7 @@ script: bundle exec rake spec
|
|
7
7
|
deploy:
|
8
8
|
provider: rubygems
|
9
9
|
api_key:
|
10
|
-
secure:
|
10
|
+
secure: tWkmZxm7D6fQGK3Shnccss9kXbGvAPFk4xr8fozhcX8xFut9P4+xs6U3iOa/JWWVb04YH5XHSI/i1B5cRMrK5v/xbY4jyJzRHHq9pcrYmnrnazDvpvDk6bb73PSOUZfBiSHxTu2EWk7wWuFIeFt81gQuX1k1tskAgKjXTsuPHCHJILlWP1HKpvIIoERffhWBAy8cDvURG64C8gaykTEj5rfHfdluA+PFZjum30vmkm8G48LuxprlmjYUDBIViXL/YZD+2AkRFeWSQOD7IB/34vFwnrZtw6mel42kU2zxdPOvW8JSLGNXExQyIr0krFsvgPq4TUkBqpkpHMOdDX4curSAEc+b2FROtYLwTY9MCnanQ4/KAbLxFiEuZlffPNm1g4EsfYA9B8e1xGkjJm9sLkIkKv+uztEq4p+x8DAe99y6lm+kTb36/IBFaeucCi5JjUWsGlGdQE2VrVfNcNTDhMXmUC8FEwiM1oOJYSDkjB0tpkU9VCIgLbrpFK8Nk8ByxO+5V2myvPfpWyN4sG3d1BIgKMJdOGlqI9ECHa9S64TLexGa9HZcBaYHXeYrUEMmPVcVNAdkU1WwcqvBAKq7so31zwAKoASMdKYV7xp8gZj+VIefwO74NaA7D2j31OuzMZUrl1QEZxsYXLsUWOTbrSFW+sMBaL8vtKK6Q2u+jNQ=
|
11
11
|
gem: guard-busted
|
12
12
|
on:
|
13
13
|
tags: true
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# Guard::Busted
|
2
2
|
[![Build Status](https://travis-ci.com/pjezusek/guard-busted.svg?branch=master)](https://travis-ci.com/pjezusek/guard-busted)
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/guard-busted.svg)](https://badge.fury.io/rb/guard-busted)
|
3
4
|
|
4
5
|
Guard for the unit testing framework named [busted](http://olivinelabs.com/busted/)
|
5
6
|
|
@@ -23,10 +24,10 @@ Just type `guard init busted` in the root of your project.
|
|
23
24
|
This command initializes the Guard file.
|
24
25
|
|
25
26
|
The provided guard template checks all files with `.lua` extension and starts the corresponding test file.
|
26
|
-
It searches test files in `spec` directory with pattern `spec/<relative_path_to_file>/<file_name>_spec.lua`.
|
27
|
+
It searches test files in `spec` directory with the pattern `spec/<relative_path_to_file>/<file_name>_spec.lua`.
|
27
28
|
|
28
|
-
EXAMPLE: you have file in the project `some_dir/some_file.lua`.
|
29
|
-
After some change the guard-busted gem will try to perform tests located in: `spec/some_dir/some_file_spec.lua`.
|
29
|
+
EXAMPLE: lets assume that you have a file in the project `some_dir/some_file.lua`.
|
30
|
+
After some change on this file the guard-busted gem will try to perform tests located in: `spec/some_dir/some_file_spec.lua`.
|
30
31
|
|
31
32
|
WARNING!: Keep in your mind that it treats `src` dir in the special way.
|
32
33
|
It just does not include `src` in the mentioned pattern.
|
@@ -34,7 +35,7 @@ It just does not include `src` in the mentioned pattern.
|
|
34
35
|
|
35
36
|
## Contributing
|
36
37
|
|
37
|
-
Don't
|
38
|
+
Don't hesitate to open an issue or make a pull request.
|
38
39
|
|
39
40
|
## License
|
40
41
|
|
data/lib/guard/busted.rb
CHANGED
data/lib/guard/busted/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-busted
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Piotr Jezusek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: guard-compat
|
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
155
155
|
- !ruby/object:Gem::Version
|
156
156
|
version: '0'
|
157
157
|
requirements: []
|
158
|
-
rubygems_version: 3.
|
158
|
+
rubygems_version: 3.0.8
|
159
159
|
signing_key:
|
160
160
|
specification_version: 4
|
161
161
|
summary: Guard gem for busted
|