guard-exec 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dbc0afaa0fc9ab724706df3dd7c6b8ab379827f0d1414920eca5986f98ae2e15
4
- data.tar.gz: f69c71d79ce5ea4e5eb6f7aa477b0c603243f4f888a0f04004bb365cf00d23d4
3
+ metadata.gz: ebeb85bca73be0f644305cbfbc872f98c136a4ae679565e5adacfadc43e34316
4
+ data.tar.gz: 5c0514de3ea62a54a2df65716a3ea8e96b5b51dc79d591f4dbb8f2a84da7ab0f
5
5
  SHA512:
6
- metadata.gz: 75badba1936cb27dda0eaf4e970855ee6fb4df885d509c8a6c8ff268542c5bdd05b631436b2a703c40c3649c39c2946743e699d495b7075718c04369e6781762
7
- data.tar.gz: fe9caeef58d147c36588f7c9c32be270079ea122e2d3fc14cc2d6f41311ff1726133a2770e1f227469a7df98b4930c7e96fdf5d7e5388842ddd70314e90f45dc
6
+ metadata.gz: 06cd7acdb660afbc72ba62c95276a1c7c202dddc9ac26fba85a1304f8456f8461fb09602df7966cf043a37509251909bfd51c124012ed420880c36c3211b5937
7
+ data.tar.gz: '048a369e75992ef1eab3e78dd6091493c20f6c266347cb07239697fe2fe8e94eb34b4b037095311bb8eb434d68a17de4b18abedad49a8357cb63d762bf5d247b'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- guard-exec (0.1.0)
4
+ guard-exec (0.1.1)
5
5
  colorize
6
6
  guard (~> 2.1)
7
7
  guard-compat (~> 1.1)
data/README.md CHANGED
@@ -53,7 +53,7 @@ The following options are available:
53
53
  # crystal spec -- --chaos
54
54
  guard :exec, name: 'Minitest', command: 'crystal spec', comand_arguments: '-- --chaos' do
55
55
  watch(%r{^spec/(.*)_spec\.cr})
56
- watch(%r{^src/[^/+]+/(.+)\.cr$}) { |m| "spec/#{m[1]}_spec.cr" }
56
+ watch(%r{^src/(.+)\.cr$}) { |m| "spec/#{m[1]}_spec.cr" }
57
57
  end
58
58
 
59
59
  ```
@@ -63,8 +63,8 @@ end
63
63
  # mix test
64
64
  guard :exec, name: 'Test', command: 'mix test' do
65
65
  watch(%r{^test/(.*)_test\.exs})
66
- watch(%r{^lib/(.+)\.ex$}) { |m| "test/#{m[1]}_test.exs" }
67
- watch(%r{^test/test_helper.exs$}) { "test" }
66
+ watch(%r{^lib/(.+)\.ex$}) { |m| "test/#{m[1]}_test.exs" }
67
+ watch(%r{^test/test_helper.exs$}) { "test" }
68
68
  end
69
69
  ```
70
70
 
@@ -5,15 +5,15 @@
5
5
  # # crystal spec -- --chaos
6
6
  # guard :exec, name: 'Minitest', command: 'crystal spec', comand_arguments: '-- --chaos' do
7
7
  # watch(%r{^spec/(.*)_spec\.cr})
8
- # watch(%r{^src/[^/+]+/(.+)\.cr$}) { |m| "spec/#{m[1]}_spec.cr" }
8
+ # watch(%r{^src/(.+)\.cr$}) { |m| "spec/#{m[1]}_spec.cr" }
9
9
  # end
10
10
 
11
11
  # # Elixir Test
12
12
  # # mix test
13
13
  # guard :exec, name: 'Test', command: 'mix test' do
14
14
  # watch(%r{^test/(.*)_test\.exs})
15
- # watch(%r{^lib/(.+)\.ex$}) { |m| "test/#{m[1]}_test.exs" }
16
- # watch(%r{^test/test_helper.exs$}) { "test" }
15
+ # watch(%r{^lib/(.+)\.ex$}) { |m| "test/#{m[1]}_test.exs" }
16
+ # watch(%r{^test/test_helper.exs$}) { "test" }
17
17
  # end
18
18
 
19
19
  # # Elixir Credo
@@ -1,3 +1,3 @@
1
1
  module Guard
2
- EXEC_VERSION = '0.1.0'
2
+ EXEC_VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-exec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramón Soto