fpm-cookery 0.19.0 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
data/.autotest DELETED
@@ -1,21 +0,0 @@
1
- require 'autotest/restart'
2
-
3
- Autotest.add_hook :initialize do |at|
4
- at.testlib = 'minitest/autorun'
5
- at.order = :natural
6
- at.libs = '.:lib:spec'
7
-
8
- at.clear_mappings
9
-
10
- at.add_mapping(%r{^spec/.*_spec\.rb$}) do |filename, _|
11
- filename
12
- end
13
-
14
- at.add_mapping(%r{^lib/(.*)\.rb$}) do |_, m|
15
- ["spec/#{m[1].gsub('fpm/cookery/', '')}_spec.rb"]
16
- end
17
-
18
- at.add_mapping(%r{^spec/spec_helper\.rb$}) do
19
- at.files_matching %r{^spec/.*_spec\.rb$}
20
- end
21
- end